gpt4 book ai didi

lucene - Elasticsearch:IllegalArgumentException

转载 作者:行者123 更新时间:2023-12-02 22:42:22 31 4
gpt4 key购买 nike

我已经使用以下查询来匹配所有文档

{
"query": {
"custom_score": {
"query": {
"query_string": {
"query": "*"
}
},
"script": "_score"
}
}
}

但是不幸的是我遇到了以下错误
{
"took": 1515,
"timed_out": false,
"_shards": {
"total": 7,
"successful": 6,
"failed": 1,
"failures": [
{
"status": 500,
"reason": "RemoteTransportException[[els][inet[/192.168.1.226:9300]][search/phase/fetch/id]]; nested: IllegalArgumentException[docID must be >= 0 and < maxDoc=53134 (got docID=214747)]; "
}
]
},
"hits": {
"total": 1574502,
"max_score": null,
"hits": [

]
}
}

注意:我使用0.90.3 ES版本,此群集使用四个节点

我只能在0.90.3中得到这个问题。

有什么解决办法可以防止此问题?

谢谢,

最佳答案

我不知道它一定能解决您的问题,但是要匹配所有文档,您应该使用match all query

"custom_score": {
"query": {
"match_all" : { }
},
"script": "_score"
}

关于lucene - Elasticsearch:IllegalArgumentException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18783728/

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