Exact search in array object type using elasticsearch

后端 未结 2 1927
深忆病人
深忆病人 2021-02-04 04:58

I\'m looking for a way to do exact array matches in elastic search. Let\'s say these are my documents:

{\"id\": 1, \"categories\" : [\"c\", \"d\         


        
相关标签:
2条回答
  • 2021-02-04 05:41

    If you have a discrete, known set of categories, you could use a bool query:

    "bool" : {
        "must" : {
            "terms" : { "categories" : ["c", "d"],
                 minimum_should_match : 2
             }
        },
        "must_not" : {
            "terms" : { "categories" : ["a", "b", "e"],
                 minimum_should_match : 1
             }
        }
    }
    

    Otherwise, Probably the easiest way to accomplish this, I think, is to store another field serving as a categories keyword.

    {"id": 1, "categories" : ["c", "d"], "categorieskey" : "cd"}
    

    Something like that. Then you could easily query with a term query for precisely the results you want, like:

    term { "categorieskey" : "cd" }
    

    And you could still search non-exclusively, as;

    term { "categories" : "c" }
    

    Querying for two categories that must both be present is easy enough, but then preventing any other potential categories from being present is a bit harder. You could do it, probably. You'dd probably want to write a query to find records with both, then apply a filter to it eliminating any records with categories other than the ones specified. It's not really a sort of search that Lucene is really designed to handle, to my knowledge.

    Honestly I'm having a bit of trouble coming up with a good filter to use here. You might need a script filter, or you could filter the results after they have been retrieved.

    0 讨论(0)
  • 2021-02-04 05:44

    I found a solution for our usage case that appears to work. It relies on two filters and the knowledge of how many categories we want to match against. We make use of a terms filter and a script filter to check the size of the array. In this example, marketBasketList is similar to your categories entry.

    {
      "query": {
        "bool": {
          "must": [
            {
              "match": {
                "siteId": 4
              }
            },
            {
              "match": {
                "marketBasketList": {
                  "query": [
                    10,
                    11
                  ],
                  "operator": "and"
                }
              }
            }
          ]
        },
        "boost": 1,
        "filter": {
          "and": {
            "filters": [
              {
                "script": {
                  "script": "doc['marketBasketList'].values.length == 2"
                }
              },
              {
                "terms": {
                  "marketBasketList": [
                    10,
                    11
                  ],
                  "execution": "and"
                }
              }
            ]
          }
        }
      }
    }
    
    0 讨论(0)
提交回复
热议问题