简体   繁体   English

如何使用elasticsearch突出显示单词中的字符

[英]How to highlight characters within words using elasticsearch

I have implemented auto suggest using elastic search where I am giving suggestions to users based on typed value 'where' .我已经使用弹性搜索实现了自动建议,我根据键入的值'where'向用户提供建议。
Most of the part works fine if I type full word or few starting characters of word.如果我输入完整的单词或单词的几个起始字符,大部分内容都可以正常工作。
I want to highlight specific characters typed by the user, say for example user types 'ca' then suggestions should highlight ' Ca lifornia' only and not whole word ' California '我想通过用户输入的亮点特定字符,说,例如用户类型'ca'则建议,应强调“能源社团共同发起”的,而不是整个单词“加利福尼亚
Highlight tag should show result like <b>Ca</b>lifornia and not <b>California</b> .突出显示标签应显示类似<b>Ca</b>lifornia而不是<b>California</b>

Here is my index settings这是我的索引设置

 {
      "settings": {
        "index": {
          "analysis": {
            "filter": {
              "edge_filter": {
                "type": "edge_ngram",
                "min_gram": 1,
                "max_gram": 50
              },
              "lowercase_filter":{
                "type":"lowercase",
                "language": "greek"
              },
              "metro_synonym": {
                "type": "synonym",
                "synonyms_path": "metro_synonyms.txt"
              },
              "profession_specialty_synonym": {
                "type": "synonym",
                "synonyms_path": "profession_specialty_synonyms.txt"
              }
            },
            "analyzer": {
              "auto_suggest_analyzer": {
                "filter": [
                  "lowercase",
                  "edge_filter"
                ],
                "type": "custom",
                "tokenizer": "whitespace"
              },
              "auto_suggest_search_analyzer": {
                "filter": [
                  "lowercase"
                ],
                "type": "custom",
                "tokenizer": "whitespace"
              },
              "lowercase": {
                "filter": [
                  "trim",
                  "lowercase"
                ],
                "type": "custom",
                "tokenizer": "keyword"
              }
            }
          }
        }
      },
      "mappings": {
        "properties": {
          "what_auto_suggest": {
            "type": "text",
            "analyzer": "auto_suggest_analyzer",
            "search_analyzer": "auto_suggest_search_analyzer",
            "fields": {
              "raw":{
                "type":"keyword"
              }
            }
          },
          "company": {
            "type": "text",
            "analyzer": "lowercase"
          },
          "where_auto_suggest": {
            "type": "text",
            "analyzer": "auto_suggest_analyzer",
            "search_analyzer": "auto_suggest_search_analyzer",
            "fields": {
              "raw":{
                "type":"keyword"
              }
            }
          },
          "tags_auto_suggest": {
            "type": "text",
            "analyzer": "auto_suggest_analyzer",
            "search_analyzer": "auto_suggest_search_analyzer",
            "fields": {
              "raw":{
                "type":"keyword"
              }
            }
          }
        }
      }
    }


Query i am using to pull suggestions -我用来提取建议的查询 -

GET /autosuggest_index_test/_search
{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "where_auto_suggest": {
              "query": "ca",
              "operator": "and"
            }
          }
        }
      ]
    }
  },
  "aggs": {
    "NAME": {
      "terms": {
        "field": "where_auto_suggest.raw",
        "size": 10
      }
    }
  },
  "highlight": {
    "pre_tags": [
      "<b>"
    ],
    "post_tags": [
      "</b>"
    ],
    "fields": {
      "where_auto_suggest": {
      }
    }
  }
}


One of json result that I am getting -我得到的 json 结果之一 -

  {
    "_index" : "autosuggest_index_test",
    "_type" : "_doc",
    "_id" : "Calabasas CA",
    "_score" : 5.755663,
    "_source" : {
      "where_auto_suggest" : "Calabasas CA"
    },
    "highlight" : {
      "where_auto_suggest" : [
        "<b>Calabasas</b> <b>CA</b>"
      ]
    }
  }

Can someone please suggest, how to get output here (in the where_auto_suggest) like - "<b>Ca</b>labasas <b>CA</b>"有人可以建议,如何在此处(在 where_auto_suggest 中)获得输出,例如"<b>Ca</b>labasas <b>CA</b>"

I don't really know why but if you use a edge_ngram tokenizer instead of an edge_ngram filter you will have highlighted characters instead of highlighted words.我真的不知道为什么,但是如果您使用edge_ngram 标记器而不是 edge_ngram 过滤器,您将突出显示字符而不是突出显示的单词。

So in your settings, you could declare such a tokenizer :因此,在您的设置中,您可以声明这样的标记器:

"settings": {
    "index": {
        "analysis": {
            "tokenizer": {
                "edge_tokenizer": {
                    "type": "edge_ngram",
                    "min_gram": 1,
                    "max_gram": 50,
                    "token_chars": [
                        "letter",
                        "digit",
                        "punctuation",
                        "symbol"
                    ]
                }
            },
            ...
        }
    }
}

And change your analyzer to :并将您的分析器更改为:

"analyzer": {
    "auto_suggest_analyzer": {
        "filter": [
            "lowercase"
        ],
        "type": "custom",
        "tokenizer": "edge_tokenizer"
    }
    ...
}

Thus your example request will return因此您的示例请求将返回

{
    ...
    "hits": {
        "total": {
            "value": 1,
            "relation": "eq"
        },
        "max_score": 0.2876821,
        "hits": [
            {
                "_index": "autosuggest_index_test",
                "_type": "_doc",
                "_id": "grIzo28BY9R4-IxJhcFv",
                "_score": 0.2876821,
                "_source": {
                    "where_auto_suggest": "california"
                },
                "highlight": {
                    "where_auto_suggest": [
                        "<b>ca</b>lifornia"
                    ]
                }
            }
        ]
    }
    ...
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM