gpt4 book ai didi

ElasticSearch 嵌套 bool 查询

转载 作者:行者123 更新时间:2023-12-02 23:22:31 25 4
gpt4 key购买 nike

我正在使用 ElasticSearch 5.6。我有以下 JSON 文档。

    {
"cards": [{
"tag_categories": [
{
"is_sensitive": true,
"category": "Users",
"tags": [
{
"is_selected": true,
"name": "user1"
},
{
"is_selected": true,
"name": "user2"
},
{
"is_selected": false,
"name": "user3"
}
]
}
],
"risk": "medium",
"position": 1,
"placement": 4,
"title": "test title",

}, ...]
}

如果所有给定的用户名和相应的 is_selected 值为真,我想返回此文档。

这是我的查询。

{
"_source": {
"excludes": ["cards.pages"]
},
"query": {
"bool": {
"must": [{
"match": {
"_all": "hello world"
}
}],
"filter": [{
"nested": {
"path": "cards.tag_categories.tags",
"query": {
"bool": {
"must": [
{
"bool": {
"must": [
{
"match": {
"cards.tag_categories.tags.name": "user2"
}
},
{
"match": {
"cards.tag_categories.tags.is_selected": true
}
}

]
}
},
{
"bool": {
"must": [
{
"match": {
"cards.tag_categories.tags.name": "user1"
}
},
{
"match": {
"cards.tag_categories.tags.is_selected": true
}
}

]
}
}

]
}
}
}
},
{
"term": {
"name.keyword": "hello name"
}
},
{
"term": {
"title.keyword": "hello title"
}
}

]
}
}
}

我添加了两个子 bool 查询来匹配每组用户名和 is_selected 值。父 bool 查询将获取 AND 并在为真时返回文档。

在上面的示例查询中,文档应返回为 user1 和 user2 匹配条件。但它不会发生。

如果我将单个用户与其 is_selected 值进行比较,文档将返回。例如:用户 1。

如果有人能告诉我我在哪里犯了错误,我将不胜感激。

最佳答案

我添加了单独的嵌套 block 并且成功了!

{
"_source": {
"excludes": ["cards.pages"]
},
"query": {
"bool": {
"must": [{
"match": {
"_all": "hello world"
}
}],
"filter": [
{
"nested": {
"path": "cards.tag_categories.tags",
"query": {
"bool": {
"must": [
{
"term": {
"cards.tag_categories.tags.name.keyword": "user1"
}
},
{
"term": {
"cards.tag_categories.tags.is_selected": true
}
}

]
}
}
}
},
{
"nested": {
"path": "cards.tag_categories.tags",
"query": {
"bool": {
"must": [
{
"term": {
"cards.tag_categories.tags.name.keyword": "user2"
}
},
{
"term": {
"cards.tag_categories.tags.is_selected": true
}
}

]
}
}
}
},

{
"term": {
"name.keyword": "hello name"
}
},
{
"term": {
"title.keyword": "hello title"
}
}

]
}

}

关于ElasticSearch 嵌套 bool 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47303279/

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