hi, Your datastore quota also includes indexes, which are not shown in datastore stats. Your entities will always have default indexes built for them, even if you have defined no composite indexes-- ascending and descending indexes are maintained for each (indexed) entity property. So, one way to reduce your total storage is to consider whether you require all your entity properties to be indexed. (It's normal for the indexes to often take more space than the data itself).
There is an existing issue about better visibility on indexes in datastore stats that you might want to star: http://code.google.com/p/googleappengine/issues/detail?id=2740 On Sat, Feb 18, 2012 at 12:23 AM, melios <[email protected]> wrote: > Hi all, > > I have a small application that has: > > 6MB of data in the datastore. > 45MB of data in the blobstore. > NO indexes in the data. > > Currently the quota reports that I'm using the 46% of 1.00 GB, that is > 460 MB. > > What is allocating the extra space? Any ideas? > > I'm uploading new versions (4-5 per day) to test things but I'm > deleting the old ones. Is there a chance that the previous versions do > not free up the space upon deletion? > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
