The reason for the ballooning is, by default two indexes are created
for every property in your Entity model. All of these indexes add
quite a bit to the necessary storage space. If you have any properties
in your model that don't require an index, it's a good idea to specify
indexed=False for that property in the model.

More info here: 
http://code.google.com/appengine/docs/python/datastore/queriesandindexes.html

Bulk uploading does take time, especially for so many entities, but
hopefully it's something you only have to do once.

-- 
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