- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用7.7版的ElasticSearch,LogStash和Kibana,并尝试更新字段的索引映射会导致2个错误之一:
mapper_parsing_exception: analyzer on field [title] must be set when search_analyzer is set
illegal_argument_exception: Mapper for [title] conflicts with existing mapping:\n[mapper [title] has different [analyzer]]
"analyzer": "standard"
,则会出现第一个错误。如果我将其保留,则会出现第二个错误。
PUT /my_index/_mapping
{
"properties": {
"title": {
"type": "text",
"analyzer": "standard",
"search_analyzer": "synonyms"
}
}
}
GET /my_index/_mapping
获得映射时,没有看到定义的任何分析器:
"title" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
},
POST /my_index/_close
PUT /my_index/_settings
{
"index": {
"analysis": {
"analyzer": {
"synonyms": {
"tokenizer": "whitespace",
"filter": [
"lowercase",
"the_synonyms"
]
}
},
"filter": {
"the_synonyms": {
"type": "synonym",
"synonyms_path": "the_synonyms.txt",
"updateable": true
}
}
}
}
}
POST /my_index/_open
最佳答案
以下作品。不确定以这种方式进行操作会有任何影响。我不这么认为,但是除了指出standard
分析器是默认分析器的文档之外,我也找不到关于它的任何文档。我基本上是通过猜测找到答案的。
PUT /my_index/_mapping
{
"properties": {
"title": {
"type": "text",
"analyzer": "default",
"search_analyzer": "synonyms"
}
}
}
关于elasticsearch - 如何更新ElasticSearch search_analyzer映射而在分析器上没有冲突?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62307234/
我们可以在查询时提供像空白的search_analyzer吗? 像这样的东西: "multi_match": { "query": "423.0", "type": "phrase", "
在ElasticSearch 7.x中,我使用具有synonym filter的分析器为数据字段建立了索引。 但是,为了支持增强与数据字段中与同义词匹配的查询词“完全”匹配数据字段中的查询词的查询,我
我在看 http://euphonious-intuition.com/2012/08/more-complicated-mapping-in-elasticsearch/其中解释了 ElasticS
我正在尝试使用雪球分析器对索引进行查询。它似乎无法正常工作。如果我输入“starbucks”,它将返回 0 个结果,但是如果我输入“starbuck”,它将返回名称中包含“Starbucks”的所有数
我有三个带有“用户名”字段的文档: '布里安迪利' 'briangumble' 'briangriffen' 当我搜索“brian”时,我按预期得到了所有三个,但是当我搜索“briandilley”时
在为我的elasticsearch index_analyzer设置映射时收到以下错误消息 请查找下面的错误消息 { "error": { "root_cause": [ {
我是一名优秀的程序员,十分优秀!