Hi, I am using sync gateway public API
DELETE /{db}/{doc}+?rev=+_rev
for multiple documents deletion asynchronously and got error:
error: Service Unavailable,
reason: Database server is over capacity
I noticed that
(1) some of the documents deleted successfully and some failed.
(2) This only happens for DELETE API not for GET API, i.e, when I async get multiple documents’ revision identifiers via API GET /{db}/{doc}, it is working fine.
So question is:
- What’s the capacity of DELETE and how to increase?
- If no way to increase, how to delete multiple documents in an efficient way?
Best,
Longsheng