| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 | [[delayed-allocation]]=== Delaying allocation when a node leavesWhen a node leaves the cluster for whatever reason, intentional or otherwise,the master reacts by:* Promoting a replica shard to primary to replace any primaries that were on the node.* Allocating replica shards to replace the missing replicas (assuming there are enough nodes).* Rebalancing shards evenly across the remaining nodes.These actions are intended to protect the cluster against data loss byensuring that every shard is fully replicated as soon as possible.Even though we throttle concurrent recoveries both at the<<recovery,node level>> and at the <<shards-allocation,cluster level>>, this``shard-shuffle'' can still put a lot of extra load on the cluster whichmay not be necessary if the missing node is likely to return soon. Imaginethis scenario:* Node 5 loses network connectivity.* The master promotes a replica shard to primary for each primary that was on Node 5.* The master allocates new replicas to other nodes in the cluster.* Each new replica makes an entire copy of the primary shard across the network.* More shards are moved to different nodes to rebalance the cluster.* Node 5 returns after a few minutes.* The master rebalances the cluster by allocating shards to Node 5.If the master had just waited for a few minutes, then the missing shards couldhave been re-allocated to Node 5 with the minimum of network traffic.  Thisprocess would be even quicker for idle shards (shards not receiving indexingrequests) which have been automatically <<indices-flush, flushed>>.The allocation of replica shards which become unassigned because a node hasleft can be delayed with the `index.unassigned.node_left.delayed_timeout`dynamic setting, which defaults to `1m`.This setting can be updated on a live index (or on all indices):[source,console]------------------------------PUT _all/_settings{  "settings": {    "index.unassigned.node_left.delayed_timeout": "5m"  }}------------------------------// TEST[s/^/PUT test\n/]With delayed allocation enabled, the above scenario changes to look like this:* Node 5 loses network connectivity.* The master promotes a replica shard to primary for each primary that was on Node 5.* The master logs a message that allocation of unassigned shards has been delayed, and for how long.* The cluster remains yellow because there are unassigned replica shards.* Node 5 returns after a few minutes, before the `timeout` expires.* The missing replicas are re-allocated to Node 5 (and sync-flushed shards recover almost immediately).NOTE: This setting will not affect the promotion of replicas to primaries, norwill it affect the assignment of replicas that have not been assignedpreviously. In particular, delayed allocation does not come into effect after a full cluster restart.Also, in case of a master failover situation, elapsed delay time is forgotten(i.e. reset to the full initial delay).==== Cancellation of shard relocationIf delayed allocation times out, the master assigns the missing shards toanother node which will start recovery.  If the missing node rejoins thecluster, and its shards still have the same sync-id as the primary, shardrelocation will be cancelled and the synced shard will be used for recoveryinstead.For this reason, the default `timeout` is set to just one minute: even if shardrelocation begins, cancelling recovery in favour of the synced shard is cheap.==== Monitoring delayed unassigned shardsThe number of shards whose allocation has been delayed by this timeout settingcan be viewed with the <<cluster-health,cluster health API>>:[source,console]------------------------------GET _cluster/health <1>------------------------------<1> This request will return a `delayed_unassigned_shards` value.==== Removing a node permanentlyIf a node is not going to return and you would like Elasticsearch to allocatethe missing shards immediately, just update the timeout to zero:[source,console]------------------------------PUT _all/_settings{  "settings": {    "index.unassigned.node_left.delayed_timeout": "0"  }}------------------------------// TEST[s/^/PUT test\n/]You can reset the timeout as soon as the missing shards have started to recover.
 |