[appengine-java] Re: Unable to execute query for a large number of entities

2010-07-19 Thread Simon
I believe (and this may be wrong) that the index data is only created when the object is inserted/updated. Therefore, any existing data will be not covered by the new index and won't be retrieved with any queries which are based upon the index. Updating them or reuploading them should solve the

[appengine-java] Re: Unable to execute query for a large number of entities

2010-07-16 Thread Ice13ill
I created and uploaded an index for those 2 params: datastore-index kind=DbAddressEntry ancestor=false source=auto property name=parent direction=asc / property name=type direction=asc / /datastore-index After building it i can now execute the query i needed, but i have