0

我想测试批量插入

这是我的要求

curl -PUT "http://localhost:9200/blabla/blabla/_bulk?pretty" -d '{
{"create": {}}\n
{"name" : "super"}\n
}' -i

我收到此错误:

HTTP/1.1 500 Internal Server Error
Content-Type: application/json; charset=UTF-8
Content-Length: 210

{
  "error" : "JsonParseException[Unexpected end-of-input: expected close marker for OBJECT (from [Source: [B@29ae00d4; line: 1, column: 0])\n at [Source: [B@29ae00d4; line: 1, column: 3]]",
  "status" : 500
}

我不知道为什么错误消息状态要关闭}我猜这是一个正确的 JSON,我正在按照官方网站的要求添加行尾

4

1 回答 1

2

那就是错误的语法后面不应该有括号-d ,应该如下:

 curl -PUT "http://localhost:9200/blabla/blabla/_bulk?pretty" -d '
{"create": {}}\n
{"name" : "super"}\n
' -i
于 2015-10-18T21:33:11.380 回答