gpt4 book ai didi

elasticsearch - 如何在Elasticsearch中使用脚本进行过滤

转载 作者:行者123 更新时间:2023-12-03 01:25:10 25 4
gpt4 key购买 nike

我需要搜索这样的东西

POST dev_profiles/profiles/_search
{
"query": {
"bool": {
"filter": [
{
"query_string": {
"query": "user:asd"
},
"script_fields": {
"message_age": {
"script": {
"source": "return doc.createdAt.value.getHour() == params.h",
"params": {
"h": 9
}
}
}
}
}
]
}
}
}

但无法以正确的方式建立查询。有人可以帮忙吗?

在这种情况下,它会提供错误[query_string]格式错误的查询,预期为[END_OBJECT],但发现为[FIELD_NAME]
版本的Elasticsearch 6.8

最佳答案

您要查找的查询是这样的:

{
"query": {
"bool": {
"filter": [
{
"match": {
"user": "asd"
}
}
{
"script": {
"script": {
"source": "return doc.createdAt.value.getHour() == params.h",
"params": {
"h": 9
}
}
}
}
]
}
}
}

关于elasticsearch - 如何在Elasticsearch中使用脚本进行过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58560162/

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