[google-appengine] Re: Bug in counting datastore small ops?

2013-12-15 Thread timh
You didn't mention disabling indexes in your OP. You are using iter over remote api, I usually use big batches (1000) using a cursor for remote_api work. It may be the small iter/small batches create a lot of roundtrips and these would add up as small ops. On Monday, December 16, 2013 1:05:

[google-appengine] Re: Bug in counting datastore small ops?

2013-12-15 Thread Lapteuh
Hi, again! This is not a bug in counting small quote, this is side effect of Remote API. More I will not use that. :) Thanks all! суббота, 14 декабря 2013 г., 22:32:25 UTC+6 пользователь Lapteuh написал: > > Hi all! > > Recently, I had to remove all entities of a certain type in the datastore.

[google-appengine] Re: Bug in counting datastore small ops?

2013-12-14 Thread Lapteuh
Thats funny. :) Cause: I explicitly disabled indexing properties. Yes, even if it were so, it would have been consumed write quota logically. And it is pristine clean. Yes and no further operations datastore I didn't commit. Thank you for your attention! воскресенье, 15 декабря 2013 г., 6:43:1

[google-appengine] Re: Bug in counting datastore small ops?

2013-12-14 Thread timh
Are you sure the over quota is from the query. The delete will cause all indexes associated with the deleted entity to be updated. So that will be more likely the cause of the over quota. To prove this run the same query without the delete ;-) T On Sunday, December 15, 2013 12:32:25 AM UTC+