Elasticsearch - Document Operations
Consider this Bulk API request body:
What will be the outcome after executing this request?
{"index": {"_index": "articles", "_id": "100"}}
{"title": "Intro to Elasticsearch"}
{"delete": {"_index": "articles", "_id": "101"}}
{"index": {"_index": "articles", "_id": "102"}}
{"title": "Advanced Bulk API"}What will be the outcome after executing this request?
