0%

添加分词器

添加分词器

在索引跑了一段时间之后,提出了一个新的分词规则,需要在索引上加一个分词器,但是在添加的时候报错

1
Can't update non dynamic settings

不允许修改配置,需要先关闭索引,在添加分词器,在打开索引

关闭索引

1
POST my_index/_close

添加分词器

1
2
3
4
5
6
7
8
9
10
11
12
13
PUT my_index/_settings
{
"settings": {
"analysis": {
"analyzer": {
"comma_analyzer":{
"type":"pattern",
"pattern":","
}
}
}
}
}

打开索引

1
POST my_index/_open

欢迎关注我的其它发布渠道