我有一个正确安装了“elasticsearch-head”插件的弹性搜索集群。
我想使用 _bulk API 一次插入多个值,但 _bulk 请求正文的特定格式似乎给插件带来了麻烦。
我使用“任何查询”面板通过以下设置指定我的请求:
查询:/_bulk
正文:
{ "create" : { "_index" : "eco", "_type" : "usage" } }
{ "index": 1, name" : "my_value" }
在验证 json 并且请求不会被执行时,我得到以下信息:
JSON.parse: unexpected non-whitespace character after JSON data at line 2 column 1 of the JSON data
有谁知道 elasticsearch-head 插件是否可以处理 _bulk API?还是我的要求有问题?