Elasticsearch正确重启维护
加大延迟索引复制时间 1 2 3 4 5 curl -XPUT -H "Content-type: application/json" http://es:9200/_all/_settings -d '{ "settings": { "index.unassigned.node_left.delayed_timeout": "5m" } }' 通过API,临时禁用索引分片 1 2 3 4 5 curl -XPUT -H "Content-type: application/json" http://es:9200/_cluster/settings -d '{ "transient" : { "cluster.routing.allocation.enable" : "none" } }' 停止Elas