gpt4 book ai didi

json - {"error":"MapperParsingException[Malformed content, must start with an object]","status":400}

转载 作者:行者123 更新时间:2023-11-29 02:55:10 25 4
gpt4 key购买 nike

我尝试使用命令插入我的 JSON 文件

curl -XPOST ' http://localhost:9200/test/sec5/1 ' -d @quality.json

[
{
"Provider ID":"###",
"Hospital Name":"## #### ###",
"Address":"## ## ## ## ",
"City":"###",
"State":"IL",
"ZIP Code":##,
"County Name":"$$$$",
"Phone Number":###,
"Condition":"## ## ###",
"Measure ID":"AMI_10",
"Measure Name":"## ## ##",
"Score":"98",
"state_score":99,
"nat_score":98,
"percent_s_score":"98.989898989899",
"percent_n_score":"100",
"Sample":"101",
"patient errors":"2.02",
"Footnote":"",
"Measure Start Date":"4/1/2013",
"Measure End Date":"12/31/2013"
},
{
"Provider ID":"###",
"Hospital Name":"## #### ###",
.................

"Measure Start Date":"4/1/2013",
"Measure End Date":"12/31/2013"
},

...........
.........

]

我的 JSON 格式有什么问题?提前谢谢你。

最佳答案

错误消息清楚地说明了这里发生了什么。

{“error”:“MapperParsingException[Malformed content, must start with an object]”,“status”:400}

这意味着您必须用 {...} 包装整个内容你也不能做这样的事情:

{ [...] }

因为它不是有效的 JSON 文档。 JSON 对象需要采用名称-值对的格式,例如:

{ "data": [...] }

但随后它将被视为要索引的单个文档,我猜这不是您期望的那样。您正在尝试一次索引多个文档。

基本上你不能这样做。对于一个查询中的多个“操作”,您应该使用 Bulk API .它比一个简单的查询要复杂一些,所以我不会在这里解释。只需阅读文档即可。

关于json - {"error":"MapperParsingException[Malformed content, must start with an object]","status":400},我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29333082/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com