I am using the elasticsearch client.
var elasticsearch = require('elasticsearch');
var client = new elasticsearch.Client({
host:"https://********",
log: 'trace',
});
I have JSON objects lets say
[{"name":"abc", "age": 23},{"name":"bcd", "age": 25}......]
My Goal to insert it in bulk. I tried but not working.
client.bulk({
index: "person",
type: '_doc',
body: [{JSON}] // input as JSON format
})