Hi,
I've been having a very hard time since the last few days w.r.t.
deleting existing data and uploading new data in my datastore.
For deleting: I get a row using the key_name and then delete it.
dbRow = modelObject.get_by_key_name(key_name)
if dbRow:
dbRow.delete()
My datastore has roughly 60K rows and I delete them one by one. Many
times when doing this, I get a quota exceeded exception. But when I
login to
appspot.com for seeing whats wrong, I don't see any error.
Similarly, when uploading data, I am using the bulkload_client.py
script for uploading the data. There again I see the same issues.
There are times when after inserting 500 rows, I get the error and
thereafter no matter how many times I start again, I see the same
error.
I've almost come to the conclusion that downloading and uploading the
data on the same day is kinda impossible.
Am I doing something fundamentally incorrect? If not, is there any ETA
on when will things get better. My website has been down since the
last 4 days because of these issues :(.
-Shri