Hey Edward,
First, you should probably star issue 2740. Space used by indexes
is *not* included in your datastore statistics.
http://code.google.com/p/googleappengine/issues/detail?id=2740
Every property name is stored in every entity. So if you use long
descriptive property names you'll have lots of metadata. The property
names are also stored in your indexes, which can really multiply your
data! So the difference between your stored data on the quota page
and the size of all entities in the statistics, less your blobstore
and stored tasks, is probably pretty close to the size of your
indexes. If we could see stats on our indexes we'd know for sure
though, so star 2740.
You can reduce the space by explicitly disabling indexes on any
fields you're not querying or ordering by. You'll have to reput all
of your data to reclaim the space already used.
Also, don't forget, stored tasks also count against the stored data quota.
Robert
On Fri, May 6, 2011 at 08:44, Edward Hartwell Goose <[email protected]> wrote:
> I've partially answered my own question:
> "The "Metadata" property type represents space consumed by storing
> properties inside an entry that is not used by the properties directly."
> But I don't quite follow what this means?
> The entity that has the most meta data consists of several booleans, between
> 2 and 3 keys, a list of up to 60 Strings and an accompanying list of up to
> 13 Strings, and it is a child of a parent entity.
> What does the above statement mean in this context?
>
> --
> 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.