Hi, Have you put anything in the blobstore? That counts toward your billable quota size. What about your task queues? They also count although they aren't enforced as of yet as far as I know. Check this document for further help: http://code.google.com/appengine/docs/quotas.html
Also, as other replier stated, you always have indexes. At the very least you will have a primary key index and any properties that are not explicitly marked as unindexed will have an index built for them automatically. And be careful of exploding indexes which can really cause your data usage to explode which shouldn't be your problem here since as you state you don't have any composite indexes configured. Steve On Wed, Nov 3, 2010 at 7:46 AM, Sundar <[email protected]> wrote: > I'm confused about the numbers that are provided in my dashboard: > > - Datastore Statistics says: Size of all entities = 12 MB > - Datastore Admin gives me all my entity kinds, and the total is > 11.112MB > - Dashboard says that "Total Stored Data" is 2.04GB > > Is there a way to determine what exactly "Total Stored Data" refers to? > I've seen a lot of forum posts that say this is linked to indexes. But my > "number of indexes" is 0. But even otherwise, 1.9GB of indexes on a 12MB > data-set seems wrong. > > So what exactly is taking up all the storage? Is there a way to get a > break-down of the storage for this TSD value? It would be very helpful to > dave details since I'm being billing for this amount, and right now it's a > bit of a black-box. > > Also it seems there are a lot of posts over the last few months about > understanding what the Total Stored Data value means. So it might be > worthwhile for google to clarify this in the documentation. > > The appid is fpgamesserver. > > PS. I realize more info on my entities might be necessary for getting a > better sense of what's going on, but I'll wait for the question before > posting details of my app. > > On Wed, Nov 3, 2010 at 9:58 AM, sahid <[email protected]> wrote: > >> Hello, >> >> Since this morning, i do not receive emails in my handler. >> So maybe somebody has a same problem? >> >> APPID: devel-inchallah >> >> Thanks, >> Sahid >> >> -- >> 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]<google-appengine%[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]<google-appengine%[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.
