gpt4 book ai didi

elasticsearch - 按别名删除索引

转载 作者:行者123 更新时间:2023-12-02 23:17:44 24 4
gpt4 key购买 nike

使用Elasticsearch,我可以按索引名称删除索引:

DELETE my_index
{}

但是我不能通过别名删除它:
DELETE my_index_alias
{}

错误是:
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "The provided expression [my_index_alias] matches an alias, specify the corresponding concrete indices instead."
}
],
"type": "illegal_argument_exception",
"reason": "The provided expression [my_index_alias] matches an alias, specify the corresponding concrete indices instead."
},
"status": 400
}

是否可以通过别名删除索引?

最佳答案

我相信您要实现的目标是不可能的。当前,ElasticSearch DELETE API支持以下内容:

  • 您可以删除索引
  • curl -XDELETE 'http://localhost:9200/{indexname}'
    当且仅当{indexname}是 具体索引时,才删除{indexname}。

    或2.改为删除别名
    curl -XDELETE 'http://localhost:9200/_alias/{aliasname}'
    当且仅当{aliasname}是 索引别名时,才删除{aliasname}。

    关于elasticsearch - 按别名删除索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52875482/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com