Hi everybody.
I would like to create data for the Elasticsearch bulk API.
The problem is that two lines are requested in the bulk file for one entry in ES database: The command line (index in my example), and the data line (field1).
{ "index" : { "_index" : "test", "_type" : "type1", "_id" : "1" } }
{ "field1" : "value1" }
Is there a way to generate this kind of thing?
Tanks a lot