Elasticsearch全局搜索多个索引上的不同过滤器

时间:2014-02-13 11:32:55

标签: java search elasticsearch search-engine

我们在弹性搜索中有多个索引,并希望搜索所有索引的数据,但我们希望对不同的索引应用不同的过滤器。

例如:

  • 少数索引取决于client_id,因此需要client_id过滤器
  • 我们在少数索引中有is_deleted标志,因此需要is_deleted过滤器

如何在弹性搜索中解决这个问题?

此外,我们正在使用突出显示功能,它应该为用户提供建议。但我们想忽略突出显示结果中的某些字段。是否可以在全球范围内排除某些字段?

1 个答案:

答案 0 :(得分:4)

可以使用过滤后的查询嵌套在布尔查询中

此示例说明了基本设置(注意如何使用不同的过滤器):

 @results = elastic_client.search([:dogs, :cats], {
   :bool => {
     :should => [
       # cats
       {
         :filtered => {
           :query => {
             :multi_match => {
               :query => 'meow', # repeated, replace with a variable
               :type => 'phrase_prefix',
               :fields => ['name', 'age']
             }
           },
           :filter => {
             :and => [
               { :term => { :owner_id => '123' } },
               { :type => { :value => 'cat' } }
             ]
           }
         }
       },
       # dogs
       {
         :filtered => {
           :query => {
             :multi_match => {
               :query => 'meow', # repeated, replace with a variable
               :type => 'phrase_prefix',
               :fields => ['name', 'color']
             }
           },
           :filter => {
             :and => [
               { :term => { :kennel_id => '456' } },
               { :type => { :value => 'dog' } }
             ]
           }
         }
       }
     ]
   }
 })

此特定代码可能适用于您的ES客户端,也可能不适用,但它应该对该概念有相当的了解。

请注意,查询“meow”会出现两次,您可能希望使用变量来搜索两个索引中的相同内容。此外,multi_match显然可能是其他类型的查询。