我正在使用弹性搜索客户端。
var elasticsearch = require('elasticsearch');
var client = new elasticsearch.Client({
host:"https://********",
log: 'trace',
});
我有 JSON 对象可以说
[{"name":"abc", "age": 23},{"name":"bcd", "age": 25}......]
我的目标是批量插入。我试过但没有工作。
client.bulk({
index: "person",
type: '_doc',
body: [{JSON}] // input as JSON format
})