Closed WLBF closed 6 years ago
As I know, Elasticsearch support bulk index without specifying the _id. However empty _id field in action metadata json is not allowed. e.g.
_id
{ "index": { "_type": "type1", "_id": "" }} // fail { ... }
{ "index": { "_type": "type1" }} // ok { ... }
Hi. What do you think about createControl() overload without the id argument?
createControl()
id
As I know, Elasticsearch support bulk index without specifying the
_id
. However empty_id
field in action metadata json is not allowed. e.g.