All Questions
Tagged with bulk-delete elasticsearch
2 questions
4
votes
1
answer
3k
views
Bulk Delete an attribute from a document in ElasticSearch 6+
I need to delete a particular attribute from all documents in ElasticSearch. Is there a way to do it and can it be done via Bulk API. I am unable to find an API to Bulk Delete an attribute from ...
0
votes
0
answers
569
views
Trouble in Delete Multiple Documents by one Query in Elasticsearch
I am trying to delete multiple documents from one types at a time,
this is my code.
var ids = new List<Int64> { 1, 2, 3 };
var bulkResponse = Client.DeleteMany<Demo>(ids....