[Elasticsearch] 向已存在的索引中加入自己定义filter/analyzer
Posted yxysuanfa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Elasticsearch] 向已存在的索引中加入自己定义filter/analyzer相关的知识,希望对你有一定的参考价值。
问题描写叙述
随着应用的不断升级,索引中的类型也会越来越多,新添加的类型中势必会使用到一些自己定义的Analyzer。可是通过_settings端点的更新API不能直接在已经存在的索引上使用。
在sense中进行更新时会抛出异常:
PUT /symbol
{
"settings": {
"analysis": {
"filter": {
"edgengram": {
"type": "edgeNGram",
"min_gram": "1",
"max_gram": "255"
}
},
"analyzer": {
"symbol_analyzer": {
"type": "custom",
"char_filter": [],
"tokenizer": "standard",
"filter": [
"lowercase",
"word_delimiter"
]
},
"back_edge_ngram_analyzer": {
"type": "custom",
"char_filter": [],
"tokenizer": "whitespace",
"filter": [
"reverse",
"edgengram",
"reverse"
]
}
}
}
}
}
上例中,我们希望向名为symbol的索引中加入一个filter和两个analyzers。可是会抛出例如以下的错误信息:
{
"error": "IndexAlreadyExistsException[[symbol] already exists]",
"status": 400
}
提示我们该索引已经存在了,无法加入。
解决方式
最直观的解决方式是首先备份该索引中已经存在的数据。然后删除它再重建该索引。
这样的方式比較暴力,当索引中已经存在相当多的数据时。不建议这样做。
第二种方案是使用_open和_close这一对端点,首先将目标索引关闭,运行须要的更新操作,然后再打开该索引。
POST /symbol/_close
PUT /symbol/_settings
{
"settings": {
....
}
}
POST /symbol/_open
这样就避免了须要重建索引的麻烦。
有了新加入的filter和analyzer。就能够依据须要再对types中的mappings进行更新了。
以上是关于[Elasticsearch] 向已存在的索引中加入自己定义filter/analyzer的主要内容,如果未能解决你的问题,请参考以下文章
在 Debezium 中加入:MySQL 到 Elasticsearch
根据 Elasticsearch 中不同索引中存在的字段进行查询
仅当更新前不存在用户时如何将用户添加到索引 Elasticsearch
elasticsearch对已存在的索引增加mapping字段
ElasticSearch7.3学习(十六)----RestHighLevelClient Java api实现索引的创建删除是否存在关闭开启