admin管理员组文章数量:1344545
I want to add a script_field
to the result of an Elasticsearch query that performs a calculation based on the document’s score. However, I can't find a way to access the score inside the script.
I tried something like this:
GET /_search
{
"query": { "match_all": {} },
"script_fields": {
"my_score": {
"script": {
"lang": "painless",
"source": "return _score * 2"
}
}
}
}
But this raises a "compile error" at the _score
expression.
I also tried using doc['_score'].value
, but it returns "No field found for [_score] in mapping."
Is there a way to access the score inside a script_field
?
I want to add a script_field
to the result of an Elasticsearch query that performs a calculation based on the document’s score. However, I can't find a way to access the score inside the script.
I tried something like this:
GET /_search
{
"query": { "match_all": {} },
"script_fields": {
"my_score": {
"script": {
"lang": "painless",
"source": "return _score * 2"
}
}
}
}
But this raises a "compile error" at the _score
expression.
I also tried using doc['_score'].value
, but it returns "No field found for [_score] in mapping."
Is there a way to access the score inside a script_field
?
1 Answer
Reset to default -1GET /_search
{
"query": { "match_all": {} },
"script_fields": {
"my_score": {
"script": {
"lang": "painless",
"source": "return params['_score'] * 2"
}
}
}
}
本文标签: opensearchElasticsearch scriptfields – how to access document scoreStack Overflow
版权声明:本文标题:opensearch - Elasticsearch script_fields – how to access document score? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743796515a2540533.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论