本文共 246 字,大约阅读时间需要 1 分钟。
重启集群前,先设置集群停止分片移动:
curl -XPUT -d '{
"transient" : { "cluster.routing.allocation.enable" : "none"}}'重启之后,恢复分片自动分配:
curl -XPUT -d '{
"transient" : { "cluster.routing.allocation.enable" : "all"}}'参考:
转载于:https://blog.51cto.com/11091005/2126880