hi James, This page goes into more detail about the types of stats that are maintained and how you can inspect them: http://code.google.com/appengine/docs/python/datastore/stats.html In general, as your app grows and you have more than just a few entities of each kind, you should see the stats (included in "Other" on the datastore statistics page) take a much smaller percentage of overall data stored. There is no way to opt out of generating the stats; however, you are not charged for the writes that generate the stats entities.
-Amy On Mon, Oct 17, 2011 at 7:14 AM, James Gilliam <[email protected]> wrote: > I have a namespace that has 1 kind and 16 entities. > > When I use admin -> datastore stats, it reports the 16 entities and > says i have a total of 74 entities 58 of them show no kind. I assume > these are GAE statistics. Also, it would be nice if you listed each > kind. > > For all namespaces the ratio is about 30 total entities for each one I > define and create. > > I also suspect/wonder if I am being charged to read and write these > stats which is probably adding to my overall reads and writes. I > would like to opt out of these GAE datastore stats which I don't use > or want. Is there a way to opt out? > > Or is there some other explanation here? > > Thanks > > -- > 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.
