gpt4 book ai didi

Elasticsearch 搜索查询 : why params. _source.nested_field.size() 在脚本中不起作用?

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

有很多关于这个的问题和答案,但仍然没有得到满意的答案。
Elasticsearch 版本:6.5

索引映射

"_doc": {
"properties": {
"ssid": {
"type": "long"
},
"nested_field": {
"type": "nested"
}
}
}
}

搜索查询:
{
"query": {
"bool": {
"filter": {
"script": {
"script": "params._source.nested_field.size() > 1"
}
}
}
}
}

也试过下面的查询,但没有运气
{
"query": {
"bool": {
"must": [
{
"nested": {
"path": "nested_field",
"query": {
"bool": {
"filter": {
"script": {
"script": "params._source.nested_field.size() > 1"
}
}
}
}
}
}
]
}
}
}

错误
{
"error": {
"root_cause": [
{
"type": "script_exception",
"reason": "runtime error",
"script_stack": [
"params._source.nested_field.size() > 1",
" ^---- HERE"
],
"script": "params._source.nested_field.size() > 1",
"lang": "painless"
}
],
"type": "search_phase_execution_exception",
"reason": "all shards failed",
"phase": "query",
"grouped": true,
"failed_shards": [
{
"shard": 0,
"index": "testing_index",
"node": "XXXXXXXXXXXXXXXXXXXXXXX",
"reason": {
"type": "script_exception",
"reason": "runtime error",
"script_stack": [
"params._source.nested_field.size() > 1",
" ^---- HERE"
],
"script": "params._source.nested_field.size() > 1",
"lang": "painless",
"caused_by": {
"type": "null_pointer_exception",
"reason": null
}
}
}
]
},
"status": 500
}

params._source.nested_field 在 scripted_field 中使用时返回嵌套数组,但在验证查询中不起作用。关于使用无痛脚本的嵌套查询的文档不完整。

最佳答案

尽管这会很慢而且against the guidance不访问 _source在搜索查询中,该查询在 v6.4 之前就可以使用了。
v6.4 之后,由于 refactoring 的无意副作用, 访问 _source在脚本查询上下文中是不可能的。
话虽如此,你可以“劫持”一个 function_score其 Painless 上下文仍然可以访问 _source 的查询:

{
"query": {
"function_score": {
"query": {
"match_all": {}
},
"functions": [
{
"script_score": {
"script": {
"source": "params._source.containsKey('nested_field') && params._source['nested_field'] != null && params._source.nested_field.size() > 1 ? 1 : 0"
}
}
}
],
"min_score": 1
}
}
}

您可以使用 pipeline计算字段大小,然后将其保存在文档的顶层。
或者,您可以使用 copy_tomy related answer 中所述.

关于Elasticsearch 搜索查询 : why params. _source.nested_field.size() 在脚本中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54022283/

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