我正在使用ES 5.2.0,并且在执行某些查询时遇到了异常:
Caused by: NotSerializableExceptionWrapper[too_many_clauses: maxClauseCount is set to 1024]
at org.apache.lucene.search.BooleanQuery$Builder.add(BooleanQuery.java:125)
at org.elasticsearch.index.query.BoolQueryBuilder.addBooleanClauses(BoolQueryBuilder.java:449)
at org.elasticsearch.index.query.BoolQueryBuilder.doToQuery(BoolQueryBuilder.java:418)
解决这个问题。我试图通过运行以下查询来更改“indices.query.bool.max_clause_count”值
请求:
PUT http://localhost:9200/_all/_settings?preserve_existing=true
{"indices.query.bool.max_clause_count" : "100000"}
响应:
{
"error": {
"root_cause": [
{
"type": "remote_transport_exception",
"reason": "[06LrSZC][localhost:9300][indices:admin/settings/update]"
}
],
"type": "illegal_argument_exception",
"reason": "unknown setting [index.indices.query.bool.max_clause_count] please check that any required plugins are installed, or check the breaking changes documentation for removed settings"
},
"status": 400
}
我过去常常解决的参考文献:
https://discuss.elastic.co/t/5-0-0-alpha2-how-to-set-index-query-bool-max-clause-count/49816
https://github.com/elastic/elasticsearch/pull/18341
请告诉我JSON的正确请求。
答案 0 :(得分:3)
indices.query.bool.max_clause_count
是一个静态设置,因此您应该在弹性搜索群集的每个节点的elasticsearch.yml
文件中进行设置。您必须重新启动群集。
使用以下行更新elasticsearch.yml
文件:
indices.query.bool.max_clause_count: 100000
注意:只能使用API
更新动态设置答案 1 :(得分:1)
这是一个全局设置,而不是索引级别1,它的位置在elasticsearch.yml
文件中:
indices.query.bool.max_clause_count: 10000
这就是为什么它也从index
(单数)重命名为indices
(复数)。
答案 2 :(得分:0)
查看列表的另一种可能更好的方法是将mustNots的数量减少为一个不能包含多个术语的mustnot。这将被视为单个mustNot,并且不会触发异常,从而使您可以保留应用程序其他位置可能需要的子句限制。 例如 上面的代码将获得AirportCode的列表,并且一次“不得”
// adding the blacklisted carriers to the query
BannedAirportCodeCache.instance().getAirportCodes()
.forEach(airportCode-> boolQueryBuilder.mustNot(QueryBuilders
.matchQuery("airportcodes.raw", airportCode)));
尽管上面的代码将执行相同的操作,但是在一个mustNot中,它不会触发tooManyClauses
QueryBuilder termsQueryBuilder = QueryBuilders
.termsQuery("airportcodes.raw", BannedAirportCodeCache.instance().getAirportCodes());
boolQueryBuilder.mustNot(termsQueryBuilder);