我想测试批量插入
这是我的要求
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,我正在按照官方网站的要求添加行尾