使用Postman 6.7的Elasticsearch 6.6批量插入

时间:2019-03-01 01:24:37

标签: elasticsearch postman

我阅读了各种指南,以将数据批量插入索引中。 但是我曾经做过的/ n都行不通。我猜Postman或ES的更新有变化吗?

我尝试发布到

 localhost:9200/urls/url/_bulk

在JSON格式的JSON字段中

{ "index" : {}} \n
{ "url" : "www.url1.com" } \n
{ "index" : {}} \n
{ "url" : "www.url2.com" } \n

1 个答案:

答案 0 :(得分:0)

很奇怪,但我明白了。

该代码的末尾需要一个空行:

"
{ "index" : { "_index" : "test", "_type" : "_doc" } } 
{ "url" : "www.url1.com" } 
{ "index" : { "_index" : "test2", "_type" : "_doc" } } 
{ "url" : "www.url1.com" } 

"