gpt4 book ai didi

elasticsearch - 如何在elasticsearch中删除index.routing.allocation.include.tag

转载 作者:行者123 更新时间:2023-12-02 23:32:14 26 4
gpt4 key购买 nike

通过执行以下命令,我在elsticsearch中为索引添加了一个include标签。

curl -XPUT http://localhost:9200/my_index/_settings -d '{"index.routing.allocation.include.tag" : "tag1"}'

设置后,我看不到任何用于取消/删除标签的命令。
我可以将tag设置为空,但是我想删除tag属性本身。

我们是否有任何选项可以删除此标签,目前它像这样
{
"index": {
"creation_date": "1449858605286",
"routing": {
"allocation": {
"include": {
"tag": ""
}
}
}
}

最佳答案

较新的Elasticsearch版本(如果我没记错的话是5.0+)允许您unset configurations by setting them to null ,例如:

PUT /_cluster/settings
{
"transient" : {
"indices.recovery.max_bytes_per_sec" : null
}
}

关于elasticsearch - 如何在elasticsearch中删除index.routing.allocation.include.tag,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35110722/

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