Elasticsearch Elasticsearch Rolling Restart: How to Perform Rolling Restarts

Opster Team

Last updated: Dec 22, 2022

| 4 min read

In addition to reading this guide, we recommend you run the Elasticsearch Health Check-Up. It will detect issues and improve your Elasticsearch performance by analyzing your shard sizes, threadpools, memory, snapshots, disk watermarks and more.

The Elasticsearch Check-Up is free and requires no installation.

This guide will cover how to perform rolling restarts using the API in Elasticsearch. If you’d like to perform this automatically, you can use Opster’s Management Console (OMC). The OMC makes it easy to orchestrate and manage your search deployment in any environment. Using the OMC you can deploy multiple clusters, upgrade versions, configure node roles, scale cluster resources, manage certificates and more – all from a single interface, for free. Get access.

Quick links:

Introduction 

Restarting nodes in distributed systems like Elasticsearch is always challenging, because most of the time there is a service running on these distributed systems and you have to keep the cluster up and running while reconfiguring your nodes. Safely changing your configuration while maintaining cluster availability comes with certain challenges. In this guide we’ll cover the challenges and how to overcome them.

What is a rolling restart?

Rolling restarts are relevant for distributed applications. Most distributed applications are built to avoid downtime. Based on this approach, we need a solution for loading configuration changes in  distributed applications while all nodes are up and running. 

A rolling restart allows one to reload new configurations, node by node, without losing the high availability of distributed systems, in this case Elasticsearch or OpenSearch.

The difference between full cluster restarts and rolling restarts

A full cluster restart is when we stop all the nodes at once. In rolling restarts, we stop the nodes one-by-one and change the configurations that we want while avoiding cluster downtime.

Restart mechanism in Elasticsearch clusters

The first thing to keep in mind is that whenever a single Elasticsearch node stops running, whether on purpose or by accident (a crash), Elasticsearch will start recovering the data of that node from the other nodes after a minute has passed. This means that if the crashed node doesn’t recover during that time frame, the data recovery process will start. Elasticsearch is designed to not have any SPOF (Single Point of Failure). This behavior maintains high availability in Elasticsearch clusters. 

How to restart nodes without any issues 

*Throughout the steps ahead, keep in mind that whenever we change configuration on the cluster level, we should always be sure to change it back to the default afterwards to maintain high availability of the cluster. 

You can make changes to configuration and prepare your cluster for a restart using the following settings:

  1. Adjust node_left timeout 
  2. Disable shard allocation 

How to restart nodes without any issues 

  1. Adjust “node_left” timeout

  2. Disable shard allocation

  3. Change the configuration as needed

  4. Restart the Elasticsearch node

  5. Reset the settings to default

  6. Repeat the steps

Step 1: Adjust “node_left” timeout 

This setting is set to 1 minute by default, which means if any Elasticsearch node leaves the cluster for any reason (network issues, manual restart,…) for over 1 minute, the cluster will consider the node lost and begin the data recovery process from other available nodes and incur unneeded data transfer costs.

You can avoid this type of issue by changing the node_left setting at the cluster level. Changing the node_left configuration setting from 1 minute to 5 minutes will usually give you ample time to restart your node. The cluster will wait 5 minutes for the node to rejoin the cluster, giving you time to restart as needed. 

You can use this command to change the node_left option: 

PUT _all/_settings
{
  "settings": {
    "index.unassigned.node_left.delayed_timeout": "5m"
  }
}

*Note: you can use any time unit that you need, read more.

Step 2: Disable shard allocation

Disabling shard allocation is another setting that you have to adjust before starting any restart processes in your cluster. 

If you do not disable shard allocation and your node does not rejoin the cluster in the time parameter chosen, shard allocation is the process that will start recovering data of the lost node. Disabling shard allocation is simply disabling the next step in the process so that no unwanted shard allocation will occur. 

After configuration changes have been applied and nodes have been restarted, don’t forget to change all settings back to their original state so as not to ruin your data availability.

*Note: your Elasticsearch cluster status might change from Green to Red or Yellow because of unassigned shards if any shard allocation process starts. 

You can use this command to disable allocation:

PUT _cluster/settings
{
  "persistent": {
    "cluster.routing.allocation.enable": "none"
  }
}

Elasticsearch Status

These are the cluster statuses you may encounter: 

Unassigned primary shards = Red Status
Unassigned replica shards = Yellow Status
All shards assigned = Green Status

Step 3: Change the configuration as needed

In this step you can change any option that you need in the elasticsearch.yml file, such as adding repos or any other options. It’s important to be careful with configuration changes to ensure they won’t cause the node to fail to start.  

You can check the Elasticsearch log every time you restart the service to make sure everything is sound: 

/var/log/elasticsearch/elasticsearch.log

Step 4: Restart the Elasticsearch node

After completing the steps above, you can restart the Elasticsearch node to reload your new configuration. 

systemctl start elasticsearch

Step 5: Reset the settings to default

Whenever we change configuration on the cluster level, we should always make sure to change it back to the default in order to keep the Elasticsearch cluster highly available. After restarting the Elasticsearch node successfully, you can reset all configurations back to the default. 

Reset the configurations as below: 

PUT _all/_settings
{
  "settings": {
    "index.unassigned.node_left.delayed_timeout": null
  }
}
PUT _cluster/settings
{
  "persistent": {
    "cluster.routing.allocation.enable": "all"
  }
}

Step 6: Repeat the steps

Repeat as needed to change the configuration of other nodes.


Watch product tour

Try AutoOps to find & fix Elasticsearch problems

Analyze Your Cluster
Skip to content