Re: [appengine-java] Re: Tell data store not to selected index properties on bulkupload

2010-10-05 Thread Maxim Veksler
Hi Peter, I used bulkloader.yaml. I can't find the non indexing configuration in the docs http://code.google.com/appengine/docs/python/tools/uploadingdata.html http://code.google.com/appengine/docs/python/tools/uploadingdata.htmlShould I just go back and user the deprecated method (python

Re: [appengine-java] Re: Tell data store not to selected index properties on bulkupload

2010-10-05 Thread John Patterson
On 5 Oct 2010, at 19:44, Maxim Veksler wrote: Hi Peter, I used bulkloader.yaml. I can't find the non indexing configuration in the docs http://code.google.com/appengine/docs/python/tools/uploadingdata.html Should I just go back and user the deprecated method (python configuration?).

[appengine-java] Re: Tell data store not to selected index properties on bulkupload

2010-10-04 Thread Peter Ondruska
Just define entity properties with indexed=False, e.g. class Authorization(db.Model): domain = db.StringProperty(required=True) code = db.StringProperty(required=True, indexed=False) # update = db.DateTimeProperty(required=True, auto_now_add=True) and then bulkload On Oct 4, 6:26