﻿---
title: Index-level shard allocation
description: In Elasticsearch, per-index settings allow you to control the allocation of shards to nodes through index-level shard allocation settings. These settings...
url: https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/distributed-architecture/shard-allocation-relocation-recovery/index-level-shard-allocation
products:
  - Elasticsearch
applies_to:
  - Elastic Cloud on Kubernetes: Generally available
  - Self-managed Elastic deployments: Generally available
---

# Index-level shard allocation
In Elasticsearch, per-index settings allow you to control the allocation of shards to nodes through index-level shard allocation settings. These settings enable you to specify preferences or constraints for where shards of a particular index should reside. This includes allocating shards to nodes with specific attributes or avoiding certain nodes. This level of control helps optimize resource utilization, balance load, and ensure data redundancy and availability according to your deployment's specific requirements. For additional details, check out:
- [Shard allocation filtering](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/distributed-architecture/shard-allocation-relocation-recovery/index-level-shard-allocation): Controlling which shards are allocated to which nodes.
- [Delayed allocation](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/distributed-architecture/shard-allocation-relocation-recovery/delaying-allocation-when-node-leaves): Delaying allocation of unassigned shards caused by a node leaving.
- [Total shards per node](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/reference/elasticsearch/index-settings/total-shards-per-node): A hard limit on the number of shards from the same index per node.
- [Data tier allocation](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/reference/elasticsearch/index-settings/data-tier-allocation): Controls the allocation of indices to [data tiers](https://www.elastic.co/elastic/docs-builder/docs/3028/manage-data/lifecycle/data-tiers).

<tip applies-to="Elastic Cloud Hosted: Generally available, Elastic Cloud Enterprise: Generally available">
  For Elastic Cloud Enterprise and Elastic Cloud Hosted deployments, you can't set custom node attributes, so index-level shard allocation filtering is less effective. Use [data tier allocation](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/reference/elasticsearch/index-settings/data-tier-allocation) with the `_tier` attribute instead, which works with node roles to manage data across tiers.
</tip>


## Index-level shard allocation filtering

You can use shard allocation filters to control where Elasticsearch allocates shards of a particular index. These per-index filters are applied in conjunction with [cluster-wide allocation filtering](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/reference/elasticsearch/configuration-reference/cluster-level-shard-allocation-routing-settings#cluster-shard-allocation-filtering) and [allocation awareness](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/distributed-architecture/shard-allocation-relocation-recovery/shard-allocation-awareness).
Shard allocation filters can be based on [custom node attributes](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/reference/elasticsearch/configuration-reference/node-settings#custom-node-attributes) or the built-in `_name`, `_host_ip`, `_publish_ip`, `_ip`, `_host`, `_id`, `_tier` and `_tier_preference` attributes. [Index lifecycle management](https://www.elastic.co/elastic/docs-builder/docs/3028/manage-data/lifecycle/index-lifecycle-management) uses filters based on custom node attributes to determine how to reallocate shards when moving between phases.
The `cluster.routing.allocation` settings are dynamic, enabling existing indices to be moved immediately from one set of nodes to another. Shards are only relocated if it is possible to do so without breaking another routing constraint, such as never allocating a primary and replica shard on the same node.
For example, you could use a custom node attribute to indicate a node’s performance characteristics and use shard allocation filtering to route shards for a particular index to the most appropriate class of hardware.

### Enabling index-level shard allocation filtering

To filter based on a custom node attribute:
1. Specify the filter characteristics with a custom node attribute in each node’s [`elasticsearch.yml`](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/stack-settings) configuration file. For example, if you have `small`, `medium`, and `big` nodes, you could add a `size` attribute to filter based on node size.
   ```yaml
   node.attr.size: medium
   ```
   You can also set custom attributes when you start a node:
   ```sh
   ./bin/elasticsearch -Enode.attr.size=medium
   ```
2. Add a routing allocation filter to the index. The `index.routing.allocation` settings support three types of filters: `include`, `exclude`, and `require`. For example, to tell Elasticsearch to allocate shards from the `test` index to either `big` or `medium` nodes, use `index.routing.allocation.include`:
   ```json

   {
     "index.routing.allocation.include.size": "big,medium"
   }
   ```
   If you specify multiple filters the following conditions must be satisfied simultaneously by a node in order for shards to be relocated to it:
   - If any `require` type conditions are specified, all of them must be satisfied
- If any `exclude` type conditions are specified, none of them may be satisfied
- If any `include` type conditions are specified, at least one of them must be satisfied
   For example, to move the `test` index to `big` nodes in `rack1`, you could specify:
   ```json

   {
     "index.routing.allocation.require.size": "big",
     "index.routing.allocation.require.rack": "rack1"
   }
   ```


### Index allocation filter settings


| Setting                                          | Description                                                                                      |
|--------------------------------------------------|--------------------------------------------------------------------------------------------------|
| `index.routing.allocation.include.{{attribute}}` | Assign the index to a node whose `{{attribute}}` has at least one of the comma-separated values. |
| `index.routing.allocation.require.{{attribute}}` | Assign the index to a node whose `{{attribute}}` has *all* of the comma-separated values.        |
| `index.routing.allocation.exclude.{{attribute}}` | Assign the index to a node whose `{{attribute}}` has *none* of the comma-separated values.       |

The index allocation settings support the following built-in attributes:

| Attribute     | Description                                                                                                                                                                                                                                                                                                               |
|---------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `_name`       | Match nodes by node name                                                                                                                                                                                                                                                                                                  |
| `_host_ip`    | Match nodes by host IP address (IP associated with hostname)                                                                                                                                                                                                                                                              |
| `_publish_ip` | Match nodes by publish IP address                                                                                                                                                                                                                                                                                         |
| `_ip`         | Match either `_host_ip` or `_publish_ip`                                                                                                                                                                                                                                                                                  |
| `_host`       | Match nodes by hostname                                                                                                                                                                                                                                                                                                   |
| `_id`         | Match nodes by node id                                                                                                                                                                                                                                                                                                    |
| `_tier`       | Match nodes by the node’s [data tier](https://www.elastic.co/elastic/docs-builder/docs/3028/manage-data/lifecycle/data-tiers) role. For more details see [data tier allocation filtering](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/reference/elasticsearch/index-settings/data-tier-allocation) |

<note>
  `_tier` filtering is based on [node](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/reference/elasticsearch/configuration-reference/node-settings) roles. Only a subset of roles are [data tier](https://www.elastic.co/elastic/docs-builder/docs/3028/manage-data/lifecycle/data-tiers) roles, and the generic [data role](/elastic/docs-builder/docs/3028/deploy-manage/distributed-architecture/clusters-nodes-shards/node-roles#data-node-role) will match any tier filtering.
</note>

You can use wildcards when specifying attribute values, for example:
```json

{
  "index.routing.allocation.include._ip": "192.168.2.*"
}
```


## Index recovery prioritization

Unallocated shards are recovered in order of priority, whenever possible. Indices are sorted into priority order as follows:
- the optional `index.priority` setting (higher before lower)
- the index creation date (higher before lower)
- the index name (higher before lower)

This means that, by default, newer indices will be recovered before older indices.
Use the per-index dynamically updatable `index.priority` setting to customize the index prioritization order. For instance:
```json





{
  "settings": {
    "index.priority": 10
  }
}


{
  "settings": {
    "index.priority": 5
  }
}
```

In the above example:
- `index_3` will be recovered first because it has the highest `index.priority`.
- `index_4` will be recovered next because it has the next highest priority.
- `index_2` will be recovered next because it was created more recently.
- `index_1` will be recovered last.

This setting accepts an integer, and can be updated on a live index with the [update index settings API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-put-settings):
```json

{
  "index.priority": 1
}
```