ES 执行操作DELETE /dmtv_20230415*
出现一下问题文章来源:https://www.toymoban.com/news/detail-743101.html
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "Wildcard expressions or all indices are not allowed"
}
],
"type": "illegal_argument_exception",
"reason": "Wildcard expressions or all indices are not allowed"
},
"status": 400
}
问题解决:
Elasticsearch文档说:
删除索引 API 也可以应用于多个索引,方法是使用逗号分隔列表,或者使用 _all 或 *as 索引应用于所有索引(小心!)。
为了禁用允许通过通配符或 _all 删除索引,请将配置中的 action.destructive_requires_namesetting 设置为 true。也可以通过集群更新设置 api 更改此设置。文章来源地址https://www.toymoban.com/news/detail-743101.html
PUT /_cluster/settings
{
"transient": {
"action.destructive_requires_name": true
}
}
到了这里,关于ES删除索引问题 【Wildcard expressions or all indices are not allowed】的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!