当我尝试运行POST _count
时收到错误。
这是bodyJSON:
{
"size" : "1",
"from" : "0",
"track_scores": true,
"sort" : [
{ "article_id" : "asc" }
],
"query": {
"filtered": {
"query": {
"query_string" : {
"fields" : ["content", "title"],
"query" : ` + queryEs + `
}
},
"filter": {
"range": {
"article_id" : {
"gte": "` + intToString(s.Maxid) + `"
}
}
}
}
}
}
这是错误:
{“错误”:{“ root_cause”:[{“ type”:“ parsing_exception”,“ reason”:“ request 不支持 [size]“,” line“:2,” col“:10}],” type“:” parsing_exception“,” reason“:” request 不支持[size]“,” line“:2,” col“:10},” status“:400}
我想知道我的查询是否错误,是否有人知道是否出错?
谢谢