我在弹性搜索中具有JSON文档,如下所示
{
"animals": [
{
"id": 1,
"name": "cat"
},
{
"id": 2,
"name": "dog"
},
{
"id": 3,
"name": "rabbit"
}
]
}
只有当所有三种动物都存在时,如何查询才能返回此文档?
这不起作用。
curl -H 'Content-Type: application/json' -XPOST http://localhost:9200/*animals*/_search -d '{
"query": {
"bool": {
"must": [
{
"term": {
"animals.name.keyword": "dog"
}
},
{
"term": {
"animals.name.keyword": "cat"
}
},
{
"term": {
"animals.name.keyword": "rabbit"
}
}
],
"must_not": [],
"should": []
}
}
}'
答案 0 :(得分:0)
要实现所需的功能,请确保索引映射中animals
为嵌套类型:
PUT animals
{
"mappings": {
"properties": {
"animals": {
"type": "nested"
}
}
}
}
然后您的查询需要如下所示:
curl -H 'Content-Type: application/json' -XPOST http://localhost:9200/*animals*/_search -d '{
"query": {
"bool": {
"must": [
{
"nested": {
"path": "animals",
"query": {
"term": {
"animals.name.keyword": "dog"
}
}
}
},
{
"nested": {
"path": "animals",
"query": {
"term": {
"animals.name.keyword": "cat"
}
}
}
},
{
"nested": {
"path": "animals",
"query": {
"term": {
"animals.name.keyword": "rabbit"
}
}
}
}
]
}
}
}'