Is it possible to bulk update documents with all 3 types in same request (create, update, delete) ?
fico7489 opened this issue · 0 comments
fico7489 commented
I want to bulk update documents and that bulk should perform all 3 types (create, update, delete)
Currently I am able to create and update documents with "doc_as_upsert" and updateDocuments()
and delete documents with deleteDocuments()
and that are 2 requests, but I only want one request to reduce ES API calls from 2 to 1.
Is it currently possible to do that with elastica?