Elasticsearch 无法更新非动态设置
Elasticsearch can't update non dynamic settings
我正在尝试创建一个测试分析器来试验 Elastic Search 上的分析。我创建了一个名为 "mytest" 的索引,该索引可用且可搜索,但是当我尝试创建自定义分析器时,出现以下错误
{
"error": "ElasticsearchIllegalArgumentException[Can't update non dynamic settings[[index.analysis.analyzer.content.type, index.analysis.analyzer.content.tokenizer]] for open indices [[mytest]]]",
"status": 400
}
现在我不确定更新设置的限制,但我在文档中找不到任何内容。我可以在创建索引时创建分析,但是更新不起作用。
使用下面的源创建分析器
PUT mytest/_settings
{
"analysis" : {
"analyzer":{
"content":{
"type":"custom",
"tokenizer":"whitespace"
}
}
}
}
有什么想法吗?
当索引处于打开状态时,您无法更新索引设置。您需要关闭索引并更新设置并打开索引。
参考:error when trying to update the settings
如果尝试在 Elasticsearch DSL 中为 Python 设置非动态设置,请确保将它们传递给 index.settings()
而不是动态 index.put_settings()
.
我正在尝试创建一个测试分析器来试验 Elastic Search 上的分析。我创建了一个名为 "mytest" 的索引,该索引可用且可搜索,但是当我尝试创建自定义分析器时,出现以下错误
{
"error": "ElasticsearchIllegalArgumentException[Can't update non dynamic settings[[index.analysis.analyzer.content.type, index.analysis.analyzer.content.tokenizer]] for open indices [[mytest]]]",
"status": 400
}
现在我不确定更新设置的限制,但我在文档中找不到任何内容。我可以在创建索引时创建分析,但是更新不起作用。
使用下面的源创建分析器
PUT mytest/_settings
{
"analysis" : {
"analyzer":{
"content":{
"type":"custom",
"tokenizer":"whitespace"
}
}
}
}
有什么想法吗?
当索引处于打开状态时,您无法更新索引设置。您需要关闭索引并更新设置并打开索引。
参考:error when trying to update the settings
如果尝试在 Elasticsearch DSL 中为 Python 设置非动态设置,请确保将它们传递给 index.settings()
而不是动态 index.put_settings()
.