Correct sorting for exact matches and “beginning with” (prefix) in Elasticsearch

前端 未结 1 1304
后悔当初
后悔当初 2021-01-07 10:12

I need to improve the result list on search with Elasticsearch.

Lets say we have 3 documents with single field and content like this:

  • \"apple\"
相关标签:
1条回答
  • 2021-01-07 11:02

    The only place where you require a manipulation in score is the exact match otherwise the order by position of terms give you the correct order. Lets understand this by the following:

    Lets first create a mapping as below:

    PUT test
    {
      "mappings": {
        "_doc": {
          "properties": {
            "my_field1": {
              "type": "text",
              "analyzer": "whitespace",
              "fields": {
                "keyword": {
                  "type": "keyword"
                }
              }
            }
          }
        }
      }
    }
    

    I have create field my_field1 with whitespace analyzer to make sure tokens are created by using space as only delimiter. Secondly, I have created a subfield named as keyword of type keyword. keyword will hold non-analyzed value of the input string and we'll use this for exact match.

    Lets add few docs to the index:

    PUT test/_doc/1
    {
      "my_field1": "apple"
    }
    
    PUT test/_doc/2
    {
      "my_field1": "apple tree"
    }
    
    PUT test/_doc/3
    {
      "my_field1": "green apple"
    }
    

    If use the below query to search for term apple the order of docs will be 2,1,3.

    POST test/_doc/_search
    {
      "explain": true,
      "query": {
        "query_string": {
          "query": "apple",
          "fields": [
            "my_field1"
          ]
        }
      }
    }
    

    "explain": true in the above query give the score calculation steps in the output. Reading this will give you insight how a document is score.

    All we need to do is, to boost the score for exact match. We'll run exact match against the field my_field1.keyword. You might have a question that why not my_field1. The reason for this is because my_field1 is analyzed, when tokens are generated for the input strings of the 3 docs, all will have a token (term) apple (along with other terms if present e.g. tree for doc 2 and green for doc 3) stored against this field. When we run exact match on this field for the term apple all docs will match and have similar effect on score for each document and hence no change in score. Since only one document have exact value as apple against my_field1.keyword that document (doc 1) will be a match for exact query and we'll boost this. So the query will be:

    {
      "query": {
        "bool": {
          "should": [
            {
              "query_string": {
                "query": "apple",
                "fields": [
                  "my_field1"
                ]
              }
            },
            {
              "query_string": {
                "query": "\"apple\"",
                "fields": [
                  "my_field1.keyword^2"
                ]
              }
            }
          ]
        }
      }
    }
    

    Output for above query:

    {
      "took": 9,
      "timed_out": false,
      "_shards": {
        "total": 5,
        "successful": 5,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": 3,
        "max_score": 1.7260925,
        "hits": [
          {
            "_index": "test3",
            "_type": "_doc",
            "_id": "1",
            "_score": 1.7260925,
            "_source": {
              "my_field1": "apple"
            }
          },
          {
            "_index": "test3",
            "_type": "_doc",
            "_id": "2",
            "_score": 0.6931472,
            "_source": {
              "my_field1": "apple tree"
            }
          },
          {
            "_index": "test3",
            "_type": "_doc",
            "_id": "3",
            "_score": 0.2876821,
            "_source": {
              "my_field1": "green apple"
            }
          }
        ]
      }
    }
    
    0 讨论(0)
提交回复
热议问题