Warning: Not enough nodes to allocate all shard replicas
Distributing copies of the data (index shard replicas) on different nodes can parallelize processing requests, speeding up search queries. To achieve this, increase the number of replica shards up to the maximum value (total number of nodes minus one), which also protects against hardware failure. If the index has a preferred tier, Elasticsearch will only place the copies of the data for that index on nodes in the target tier.
If a warning is encountered with not enough nodes to allocate all shard replicas, you can influence this behavior by adding more nodes to the cluster (or tier), or by reducing the index.number_of_replicas index setting.
To accomplish this, complete the following steps:
- Determine which data tier needs more capacity to identify the tier where shards need to be allocated.
- Resize your deployment to add capacity and accommodate all shard replicas.
- Check and adjust the index replicas limit to determine the current value and reduce it if needed.
You can run the following step using either API console or direct Elasticsearch API calls.
To determine which tiers an index's shards can be allocated to, use the get index setting API to retrieve the configured value for the index.routing.allocation.include._tier_preference setting:
GET /my-index-000001/_settings/index.routing.allocation.include._tier_preference?flat_settings
The response looks like this:
{
"my-index-000001": {
"settings": {
"index.routing.allocation.include._tier_preference": "data_warm,data_hot"
}
}
}
- Represents a comma-separated list of data tier node roles this index is allowed to be allocated on. The first tier in the list has the highest priority and is the tier the index is targeting. In this example, the tier preference is
data_warm,data_hot, so the index is targeting thewarmtier. If the warm tier lacks capacity, the index will fall back to thedata_hottier.
After you've identified the tier that needs more capacity, you can resize your deployment to distribute the shard load and allow previously unassigned shards to be allocated.
You can either increase the size per zone to increase the number of nodes in the availability zone(s) you were already using, or increase the number of availability zones.
- In Kibana, open your deployment’s navigation menu (placed under the Elastic logo in the upper left corner) and go to Manage this deployment.
- From the right hand side, click to expand the Manage dropdown button and select Edit deployment from the list of options.
- On the Edit page, click on + Add Capacity for the tier you identified you need to enable in your deployment. Choose the desired size and availability zones for the new tier.
- Navigate to the bottom of the page and click the Save button.
Add more nodes to your Elasticsearch cluster and assign the index’s target tier node role to the new nodes, by adjusting the configuration in elasticsearch.yml.
Add more nodes to your Elasticsearch cluster and assign the index’s target tier node role to the new nodes, by adjusting the node configuration in the spec section of your Elasticsearch resource manifest.
AutoOps is a monitoring tool that simplifies cluster management through performance recommendations, resource utilization visibility, and real-time issue detection with resolution paths. Learn more about AutoOps.
If it is not possible to increase capacity by resizing your deployment, you can reduce the number of replicas of your index data. You achieve this by inspecting the index.number_of_replicas index setting index setting and decreasing the configured value.
Use the get index settings API to retrieve the configured value for the
index.number_of_replicasindex setting.GET /my-index-000001/_settings/index.number_of_replicasThe response looks like this:
{ "my-index-000001" : { "settings" : { "index" : { "number_of_replicas" : "2" } } } }- Represents the currently configured value for the number of replica shards required for the index
Use the
_cat/nodesAPI to find the number of nodes in the target tier:GET /_cat/nodes?h=node.roleThe response looks like this, containing one row per node:
himrst mv himrstYou can count the rows containing the letter representing the target tier to know how many nodes you have. See Query parameters for details. The example above has two rows containing
h, so there are two nodes in the hot tier.Use the update index settings API to decrease the value for the total number of replica shards required for this index. As replica shards cannot reside on the same node as primary shards for high availability, the new value needs to be less than or equal to the number of nodes found above minus one. Since the example above found 2 nodes in the hot tier, the maximum value for
index.number_of_replicasis 1.PUT /my-index-000001/_settings{ "index" : { "number_of_replicas" : 1 } }- The new value for the
index.number_of_replicasindex configuration is decreased from the previous value of2to1. It can be set as low as 0 but configuring it to 0 for indices other than searchable snapshot indices may lead to temporary availability loss during node restarts or permanent data loss in case of data corruption.
- The new value for the
Reduce the index.number_of_replicas index setting.
AutoOps is a monitoring tool that simplifies cluster management through performance recommendations, resource utilization visibility, and real-time issue detection with resolution paths. Learn more about AutoOps.