I'm experimenting with the Search API with appengine, and am consistently running into the "short term burst quota" described in this SO post: quotas on appengine search api for java.
In our use case, we need to delete all documents from an Index, and re-populate the index. We've attacked this by:
- Looping through the list and deleting documents
- Adding documents through a task queue (1/s) throughput rate
I'm still bumping against this burst limit and I'm wondering if I might have to put a sleep when I delete the documents?
This burst rate is severely limiting us (since we are building these indexes on the fly based on other criteria) and am curious if anyone has any more insight.