Restart elasticsearch node
Every time a node goes down and/or and new node comes up, the cluster redistributes the shards, which may not be desired when you just need to restart a node, therefore you can make use of Rolling restart:
first disable shard allocation:
PUT /_cluster/settings { "transient" : { "cluster.routing.allocation.enable" : "none" } }
restart the node
service elasticsearch restart
Enable shard allocation:
PUT /_cluster/settings { "transient" : { "cluster.routing.allocation.enable" : "all" } }
There is a restart API analogous to the shutdown API. Just replace "shutdown" with "restart". See also the issue on github.
The correct way to restart a node is to shut it down, using either the shutdown API or sending a TERM
signal to the process (eg with kill $PID
).
Once shut down, you can start a new node using whatever you use to run elasticsearch, eg the service wrapper, or just starting it from the command line.
If you are using the service wrapper, you can restart a node by passing it the restart
command: eg /etc/init.d/elasticsearch restart
but that is just a convenience wrapper for the above.
The restart
API has been disabled since version 0.11 as it was problematic.