0

我正在使用弹性搜索来自动完成并纠正拼写错误。我的字段有这个映射(用于自动完成)。

    **Mapping:**

      "name": {
                "type": "text",
                "analyzer": "autocomplete"
              }

现在我想在这个领域实现短语建议。当我使用它时,它给出了错误的结果。那是因为我认为现有的映射。

    **POST XYZ/_search**

    {
      "suggest": {
        "text": "ipone 16",
        "simple_phrase": {
          "phrase": {
            "field": "name",
            "highlight": {
              "pre_tag": "<em>",
              "post_tag": "</em>"
            }
          }
        }
      }
    }

    **Results:**
      "options": [
              {
                "text": "i ip ipo iphon iphone 1 16",
                "highlighted": "i ip ipo <em>iphon iphone</em> 1 16",
                "score": 1.6111489e-8
              },
              {
                "text": "i ip ipo iphon iphon 1 16",
                "highlighted": "i ip ipo <em>iphon iphon</em> 1 16",
                "score": 1.4219211e-8
              },
              {
                "text": "i ip ipo ipho iphone 1 16",
                "highlighted": "i ip ipo <em>ipho iphone</em> 1 16",
                "score": 1.3510152e-8
              },
              {
                "text": "i ip ipo ipho iphon 1 16",
                "highlighted": "i ip ipo <em>ipho iphon</em> 1 16",
                "score": 1.1923397e-8
              },
              {
                "text": "i ip ipo iron iphone 1 16",
                "highlighted": "i ip ipo <em>iron iphone</em> 1 16",
                "score": 6.443544e-9
              }
            ]

    **From the document i should use this for phrase suggester.**

    "mappings": {
        "test": {
          "properties": {
            "title": {
              "type": "text",
              "fields": {
                "trigram": {
                  "type": "text",
                  "analyzer": "trigram"
                },
                "reverse": {
                  "type": "text",
                  "analyzer": "reverse"
                }
              }
            }
          }

**How can i use two different mapping on same filed?**
4

2 回答 2

0

您可以编写这样的查询。请为此查询提供输出。
最好有你的trigram analyzer设置(tokenizerchar mappertoken filter

{
   "suggest": {
      "text": "noble prize",
      "simple_phrase": {
         "phrase": {
            "field": "name_suggest.trigram",
            "size": 1,
            "gram_size": 3,
            "direct_generator": [
               {
                  "field": "name_suggest.trigram",
                  "suggest_mode": "always"
               }
            ],
             "collate": {
               "query": {
                  "inline": {
                     "match": {
                        "title": "{{suggestion}}"
                     }
                  }
               },
               "prune": true
            },
            "highlight": {
               "pre_tag": "<em>",
               "post_tag": "</em>"
            }
         }
      }
   }
}
于 2017-05-20T15:09:24.653 回答
0
  • 由于您的结果未正确标记,问题可能来自您的 aurocomplete 分析器。请提供您_settings以查看分析仪的定义。

  • name.trigram进行查询。

  • 解决此问题后,最好使用修剪结果collate
于 2017-05-15T08:34:04.437 回答