Elasticsearch - Performance and Scaling
Given this bulk indexing snippet, what will be the result if one document fails due to a mapping conflict?
POST /_bulk
{ "index": { "_index": "myindex" } }
{ "field": "value1" }
{ "index": { "_index": "myindex" } }
{ "field": 123 }
Assuming "field" is mapped as text.
