gpt4 book ai didi

elasticsearch - 带有lucene表达的 Elasticsearch top_hits聚集

转载 作者:行者123 更新时间:2023-12-03 00:20:33 26 4
gpt4 key购买 nike

我想要做一个字段折叠顶部匹配数据汇总,如此处所记录:

https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-metrics-top-hits-aggregation.html#_field_collapse_example

特别是,此段是一个问题:

"top_hit": {
"max": {
"script": "_score"
}
}

由于生产环境配置有:
script.disable_dynamic: sandbox

这意味着我不能使用groovy脚本,而不会出现以下错误:
nested: ScriptException[dynamic scripting for [groovy] disabled];

如果我这样更改查询:
"top_hit": {
"max": {
"lang": "expression",
"script": "_score"
}
}

我收到另一种错误:
nested: IllegalStateException[Expressions referencing the score can only be used for sorting];

flex 搜索版本为1.5.2。有没有办法做我想要的事情(使用lucene表达式)?

最佳答案

经过一番谷歌搜索后,我找到了答案。这是一个已解决的已知问题。

https://github.com/elastic/elasticsearch/issues/10091

但是,目前尚不清楚它固定在哪个版本中。

关于elasticsearch - 带有lucene表达的 Elasticsearch top_hits聚集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31351689/

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