Allow Elasticsearch to allocate the indexedit

The allocation of data can be controlled using the enable allocation configuration. In certain circumstances users might want to temporarily disable or restrict the allocation of data.

Forgetting to re-allow all data allocation can lead to unassigned shards.

In order to (re)allow all data to be allocated follow these steps:

In order to get the shards assigned we’ll need to change the value of the configuration that restricts the assignemnt of the shards to all.

Use Kibana

  1. Log in to the Elastic Cloud console.
  2. On the Elasticsearch Service panel, click the name of your deployment.

    If the name of your deployment is disabled your Kibana instances might be unhealthy, in which case please contact Elastic Support. If your deployment doesn’t include Kibana, all you need to do is enable it first.

  3. Open your deployment’s side navigation menu (placed under the Elastic logo in the upper left corner) and go to Dev Tools > Console.

    Kibana Console
  4. Inspect the index.routing.allocation.enable index setting for the index with unassigned shards:

    response = client.indices.get_settings(
      index: 'my-index-000001',
      name: 'index.routing.allocation.enable',
      flat_settings: true
    )
    puts response
    GET /my-index-000001/_settings/index.routing.allocation.enable?flat_settings

    The response will look like this:

    {
      "my-index-000001": {
        "settings": {
          "index.routing.allocation.enable": "none" 
        }
      }
    }

    Represents the current configured value that controls if the index is allowed to be partially or totally allocated.

  5. Change the configuration value to allow the index to be fully allocated:

    response = client.indices.put_settings(
      index: 'my-index-000001',
      body: {
        index: {
          'routing.allocation.enable' => 'all'
        }
      }
    )
    puts response
    PUT /my-index-000001/_settings
    {
      "index" : {
        "routing.allocation.enable" : "all" 
      }
    }

    The new value for the allocation.enable configuration for the my-index-000001 index is changed to allow all the shards to be allocated.