Elasticsearch:IllegalArgumentException

时间:2013-09-13 10:11:14

标签: lucene elasticsearch

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

{
 "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中得到这个问题。

是否有任何解决方案可以防止此问题?

谢谢,

1 个答案:

答案 0 :(得分:0)

我不知道它必然会解决您的问题,但为了匹配所有文档,您应该使用match all query

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