如果嵌套字段不存在,ElasticSearch查询将嵌套数据作为响应但不过滤数据

时间:2016-02-01 04:45:23

标签: elasticsearch nest

我在某些文档中嵌套了数据,有些则没有。假设下面是映射。

{
"mappings": {
         "item": {
            "properties": {
               "id": {
                  "type": "string"
               },
               "nestedType": {
                  "type": "nested",
                  "properties": {
                     "item1": {
                        "type": "long"
                     },
                     "item2": {
                        "type": "string"
                     }
                    }
                }
            }
         }
    }
}

我想在id基础上查询,并希望嵌套元素包含在我的响应中item1 = 1234.但我不想过滤响应。如果item1!= 1234或item1不存在。

实际上,我不希望嵌套查询影响我的Hits结果。但如果匹配发现其他内部命中没有结果,则包括内部命中。

1 个答案:

答案 0 :(得分:1)

您可以尝试以下查询。只有存在时,才会在inner_hits中获取结果。

{
"query": {
  "bool": {
     "must": [
        {
           "term": {
              "id": "idValue"
           }
        }
     ],
     "should": [
        {
           "nested": {
              "path": "nestedType",
              "query": {
                 "match": {
                    "item2": "item2Value"
                 }
              },
              "inner_hits": {}
           }
        }
     ]
   }
 }
}