如何合并两个DSL查询以进行聚合和过滤 [英] How to merge two DSL query for aggregation and filter

查看:67
本文介绍了如何合并两个DSL查询以进行聚合和过滤的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  • 我需要搜索研究或会计"业务领域,这是字段(OR)语句的数组
  • 我需要搜索角色是开发人员还是测试人员",条件是这是字段(或)语句的数组
  • 我想获取所有名称的BusinessArea的masterid数,designationNames,Role
  • 名称过滤器为"Group1"

下面是字典

test= [ { 'masterid': '1', 'name': 'Group1', 'BusinessArea': [ 'Accounting','Research'], 'Designation': [ 'L1' 'L2' ] }, { 'masterid': '2', 'name': 'Group1', 'BusinessArea': ['Research','Accounting' ], 'Role': [ { 'id': '5032', 'name': 'Tester' }, { 'id': '5033', 'name': 'Developer' } ], 'Designation': [ 'L1' 'L2' ]}, { 'masterid': '3', 'name': 'Group1', 'BusinessArea': [ 'Engineering' ], 'Role': [ { 'id': '5032', 'name': 'Developer' }, { 'id': '5033', 'name': 'Developer', 'parentname': '' } ], 'Designation': [ 'L1' 'L2' ]}]

下面是聚合函数


    {
      "size": 0,
      "aggs": {
        "countNames": {
          "terms": {
            "field": "BusinessArea.keyword"
          }
        },
        "designationNames": {
          "terms": {
            "field": "Designation.keyword"
          }
        },
        "Role": {
          "terms": {
            "field": "Role.name.keyword"
          }
        }
    
      }
    }

下面是过滤查询


    {
      "query": {
        "bool": {
          "must": [
            {
              "terms": {
                "BusinessArea.keyword": [
                  "Research",
                  "Accounting"
                ]
              }
            },
            {
              "terms": {
                "Role.name.keyword": [
                  "Developer",
                  "Tester"
                ]
              }
            }
          ]
        }
      }
    }

"filter": [
   "term": {
    "name.keyword": "Group1"}]

我需要将查询和输出都合并到一起

I need to merge both query and output will be having from the both

推荐答案

不错的开始!!!现在,您可以像这样简单地组合所有这些片段:

Nice start !!! Now you can simply combine all those snippets like this:

{
  "size": 0,
  "query": {
    "bool": {
      "filter": [
        {
          "term": {
            "name.keyword": "Group1"
          }
        },
        {
          "terms": {
            "BusinessArea.keyword": [
              "Research",
              "Accounting"
            ]
          }
        },
        {
          "terms": {
            "Role.name.keyword": [
              "Developer",
              "Tester"
            ]
          }
        }
      ]
    }
  },
  "aggs": {
    "countNames": {
      "terms": {
        "field": "BusinessArea.keyword"
      }
    },
    "designationNames": {
      "terms": {
        "field": "Designation.keyword"
      }
    },
    "Role": {
      "terms": {
        "field": "Role.name.keyword"
      }
    }
  }
}

这篇关于如何合并两个DSL查询以进行聚合和过滤的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆