官方API:https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-bulk.html
建议先看API
POST /<索引名>/_bulk
格式要求:
POST _bulk
{ "index" : { "_index" : "test", "_id" : "1" } }
{ "field1" : "value1" }
{ "delete" : { "_index" : "test", "_id" : "2" } }
{ "create" : { "_index" : "test", "_id" : "3" } }
{ "field1" : "value3" }
{ "update" : {"_id" : "1", "_index" : "test"} }
{ "doc" : {"field2" : "value2"} }
这里格式不对均不能成功!一行一个数据内容,文件格式末尾需要换行,
下面使用 postman 工具导入:(大数据量不建议)
ss.json文件格式
参考文章:
导入json数据到Elasticsearch(bulk方法)
ElasticSearch入门(二)批量导入数据(Postman与Kibana)