Hi,
  Indexes are unfortunately not included in the statistics.  Please
star issue 2740 to indicate that you'd like it to be included.
    http://code.google.com/p/googleappengine/issues/detail?id=2740

  Indexes can inflate your data usage quite a bit if you have many
indexes.  To reduce space used you must explicitly mark properties as
unindexed.
    
http://code.google.com/appengine/docs/python/datastore/propertyclass.html#Property

  When you delete an entity the indexes entries corresponding to that
entity are deleted.  To actually remove an index you need to remove it
from your index.yaml and vacuum indexes.


Robert







On Mon, Jun 6, 2011 at 10:02, Sean Kovacs <[email protected]> wrote:
> I have a similar question...the database stats and admin are showing
> around 2gb of total data yet the quota says almost 8gb...where is the
> disconnect - indexes?
>
> On Jun 6, 4:46 am, throwdice <[email protected]> wrote:
>> Hi,
>>
>> My two questions are:
>>
>> 1.Is index included into the Total Stored Data?
>> 2.If I delete many entities, will google delete the corresponding index? Or
>> I need to vacuum_indexes first and then rebuild the indexs?
>>
>> 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.

Reply via email to