标签:
Elasticsearch 自从1.0.7版本之后,集群各节点的滚动式升级已不需要重启集群,相比之前的升级模式来看,可以非常平滑的渡过升级过程。这里将叙述集群滚动式升级及其注意事项。
curl -XGET localhost:9200
curl -XPUT localhost:9200/_cluster/settings -d ‘{
"transient" : {
"cluster.routing.allocation.enable" : "none"
}
}‘
curl -XPOST ‘http://localhost:9200/_cluster/nodes/_local/_shutdown‘
curl -XPUT localhost:9200/_cluster/settings -d ‘{ "transient" : { "cluster.routing.allocation.enable" : "all" } }‘
标签:
原文地址:http://www.cnblogs.com/Galen-Z/p/4537258.html