使用Elasticsearch中的一个值在属性上查询多个值

时间:2013-04-27 18:17:49

标签: elasticsearch

我正在努力建立这个查询一点点。我正在搜索的索引还有一个带有id的字段“entity”。因此,一些记录将具有“实体”:16,“实体”156等,具体取决于实体的ID。我需要以这样的方式扩展此查询:我可以传递数组或某些值列表,例如{:term => {:entity => [1,16,100]}}并获取具有其中一个整数作为其实体值的记录。到目前为止我没有运气,有人能帮助我吗?

{ 
  "query" : {

    "bool" : {
      "must" : [
        {
          "term" : {"user_type" : "alpha"}
        }, 
        { 
          "term" :{"area" : "16"}
        }
      ], 
      "must_not" : [], 
      "should" :   []
    }
  }, 
  "filter": {
    "or" : [{
       "and" : [
          { "term" : { "area" : "16" } },
          { "term" : { "date" : "05072013" } }
       ]
    }, {
       "and" : [
          { "term" : { "area" : "16" } },
          { "term" : { "date" : "blank" } }
       ]
    }


    ]
  },
"from" : 0,
"size" : 100 
}

1 个答案:

答案 0 :(得分:31)

使用"terms"代替"term"

https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-terms-filter.html

{ "terms" : { "entity" : [ 123, 1234, ... ] }}