elasticsearch完全匹配查询不在not_analyzed字段上工作

时间:2016-06-17 14:18:59

标签: elasticsearch

我添加了一个字符串字段的映射,以便进行not_analyzed:'house_type':{'type':'string','index': 'not_analyzed'}

当我在此字段上查询时如下:

{
  "filter": {
    "bool": {
      "must": [
        {
          "term": {
            "house_type": "apartment"
          }
        }
      ]
    }
  }
}

上述查询不会返回任何结果,但有些条目的house_type为' apartment'我在这里缺少什么?

示例文档,映射和查询: https://gist.github.com/shiladitya-bits/b02f2c9fb38ceef03978eb483bcacd53

0 个答案:

没有答案