[google-appengine] Property is corrupt (Unicode Decode Error)

2011-06-11 Thread ravindra
My GAE app sometimes gives the following error. I uploaded all my data using bulk uploader, but never faced any problem in uploading data to datastore. Property keywords is corrupt in the datastore: Traceback (most recent call last): File "/base/python_runtime/python_lib/versions/1/google/

[google-appengine] Re: Bulk Uploading using lot of CPU

2009-07-04 Thread ravindra
okay, after some time i found out i had some 10 indexes defined on the database. after deleting them, the uploading data took cpu down by almost 100% from previous case. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[google-appengine] Bulk Uploading using lot of CPU

2009-07-04 Thread ravindra
Hi, I was using bulk upload to upload some 35K entries. The CPU usages were almost completely used in uploading 5k records. Records have just 7 fields. Any idea why CPU resource time is almost full ? Is there any way to optimize this ? Thanks in advance, Ravindra

[google-appengine] __searchable_text_index gets added multiple times

2008-11-19 Thread ravindra
Hi, I have created class Record as follows : class Record(search.SearchableModel): exp_year = db.IntegerProperty() keywords = db.StringProperty(multiline=True) now when i am running the following query in dev version : query = Record.all().search("first second third fourth" ) then index fi