Allow Elasticsearch to allocate the data in the system
Stack
The allocation of data in an Elasticsearch deployment can be controlled using the enable cluster allocation configuration. In certain circumstances users might want to temporarily disable or restrict the allocation of data in the system.
Forgetting to re-allow all data allocations can lead to unassigned shards.
To get the shards assigned we need to change the value of the configuration that restricts the assignment of the shards to allow all shards to be allocated.
We achieve this by inspecting the system-wide cluster.routing.allocation.enable cluster setting and changing the configured value to all.
To allow all data to be allocated, follow these steps.
You can run the following steps using either API console or direct Elasticsearch API calls.
Inspect the
cluster.routing.allocation.enablecluster setting:GET /_cluster/settings?flat_settingsThe response will look like this:
{ "persistent": { "cluster.routing.allocation.enable": "none" }, "transient": {} }- Represents the current configured value that controls if data is partially or fully allowed to be allocated in the system.
Change the configuration value to allow all the data in the system to be fully allocated:
PUT _cluster/settings{ "persistent" : { "cluster.routing.allocation.enable" : "all" } }- The new value for the
allocation.enablesystem-wide configuration is changed to allow all the shards to be allocated.
- The new value for the