从字典数组中查找元素的 DSL 查询

DSL query to find the elements from array of dictionaries

我在弹性搜索中有一个名为 professor

的索引
  1. 我需要搜索 BusinessAreaResearchAccounting 这是字段数组 (OR) 语句

  2. 我需要搜索 RoleDeveloperTester 条件这是字段数组 (OR) 语句

  3. 我要搜索LocationNY(&)条件

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

查询如下,第3个知道了,如何添加1 and 2

content_search = es.search(index="professor", body={
    "query": {
    "bool": {
      "must": {
        "match_all": {}
      },
      "filter": [
        {
          "term": {
            "Location.keyword": "NY"
          }
        }
      ]
    }
  }
})
content_search ['hits']['hits']

I need to search Location is NY(&) condition

我没有添加这个条件,因为在你的示例数据中没有名为 Location 的字段

试试下面的查询:

搜索查询:

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

搜索结果:

"hits": [
      {
        "_index": "stof_64386038",
        "_type": "_doc",
        "_id": "2",
        "_score": 2.0,
        "_source": {
          "id": "2",
          "name": "Group1",
          "BusinessArea": [
            {
              "id": "14",
              "name": "Research"
            },
            {
              "id": "3",
              "name": "Accounting"
            }
          ],
          "Role": [
            {
              "id": "5032",
              "name": "Tester"
            },
            {
              "id": "5033",
              "name": "Developer"
            }
          ],
          "Designation": [
            {
              "id": "16",
              "name": "L1"
            },
            {
              "id": "20",
              "name": "L2"
            },
            {
              "id": "25",
              "name": "L2"
            }
          ]
        }
      },
      {
        "_index": "stof_64386038",
        "_type": "_doc",
        "_id": "3",
        "_score": 2.0,
        "_source": {
          "id": "1",
          "name": "Group1",
          "BusinessArea": [
            {
              "id": "14",
              "name": "Research"
            },
            {
              "id": "3",
              "name": "Engineering"
            }
          ],
          "Role": [
            {
              "id": "5032",
              "name": "Developer"
            },
            {
              "id": "5033",
              "name": "Developer"
            }
          ],
          "Designation": [
            {
              "id": "16",
              "name": "L1"
            },
            {
              "id": "20",
              "name": "L2"
            },
            {
              "id": "25",
              "name": "L2"
            }
          ]
        }
      }
    ]

您可以像这样使用 bool 查询:

content_search = es.search(index="professor", body={
    "query": {
    "bool": {
      "must": [
           {
          "terms": 
              {
            "BusinessArea.name.keyword": ["Research","Accounting"]
              }
           },
         {
           "terms": 
                  {
                    "Role.name.keyword": ["Developer","Tested"]
                  }
          }
      ]
    },
      "filter": [
        {
          "term": {
            "Location.keyword": "NY"
          }
        }
      ]
  }
})