﻿---
title: Add or remove data tiers in Elastic Cloud Hosted or Elastic Cloud Enterprise
description: Add or remove warm, cold, or frozen data tiers in Elastic Cloud Hosted or Elastic Cloud Enterprise, including safe removal with shard migration.
url: https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/lifecycle/data-tiers/manage-data-tiers-ech-ece
products:
  - Elastic Cloud Enterprise
  - Elastic Cloud Hosted
  - Elasticsearch
applies_to:
  - Elastic Cloud Hosted: Generally available
  - Elastic Cloud Enterprise: Generally available
---

# Add or remove data tiers in Elastic Cloud Hosted or Elastic Cloud Enterprise
In Elastic Cloud Hosted and Elastic Cloud Enterprise, you add **warm**, **cold**, or **frozen** capacity from the deployment editor, and you remove a tier only after data can migrate away safely. The default configuration includes a shared tier for hot and content data; that tier is required and cannot be removed.

## Add a data tier

Review [Elasticsearch data tiers](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/lifecycle/data-tiers) so you choose the right tier for your workload.

### Add capacity when you create a deployment

1. On the **Create deployment** page, click **Advanced Settings**.
2. Click **+ Add capacity** for any data tiers to add.
3. Click **Create deployment** at the bottom of the page to save your changes.

![Elastic Cloud's deployment Advanced configuration page](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/images/elasticsearch-reference-ess-advanced-config-data-tiers.png)


### Add capacity to an existing deployment

1. Log in to the [Elastic Cloud Console](https://cloud.elastic.co?page=docs&placement=docs-body) or ECE [Cloud UI](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/deploy/cloud-enterprise/log-into-cloud-ui).
2. On the home page, find your deployment.
   <tip>
   If you have many deployments, you can instead go to the **Hosted deployments** (Elastic Cloud Hosted) or **Deployments** (Elastic Cloud Enterprise) page. On that page, you can narrow your deployments by name, ID, or choose from several other filters.
   </tip>
3. Select **Manage**.

1. From the navigation menu, select **Edit**.
2. Click **+ Add capacity** for any data tiers to add.
3. Click **Save** at the bottom of the page to save your changes.


## Remove a data tier

Follow this section when you need to remove the warm, cold, or frozen tier from an Elastic Cloud Hosted or Elastic Cloud Enterprise deployment. The shared hot and content tier is required and cannot be removed.
The steps differ depending on whether the tier holds [regular indices](#non-searchable-snapshot-data-tier) or [searchable snapshot](#searchable-snapshot-data-tier) indices (typical for cold or frozen when using index lifecycle management (ILM)).

### Before you remove a data tier

<important>
  Disabling a data tier, attempting to scale nodes down in size, reducing availability zones, or reverting an [autoscaling](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/autoscaling) change can all result in cluster instability, cluster inaccessibility, and even data corruption or loss in extreme cases.To avoid this, especially for [production environments](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/production-guidance), and in addition to making configuration changes to your indices and ILM as described in this guide:
  - Review the disk size, CPU, JVM memory pressure, and other [performance metrics](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/monitor/access-performance-metrics-on-elastic-cloud) of your deployment **before** attempting to perform the scaling down action.
  - Make sure that you have enough resources and [availability zones](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/production-guidance/availability-and-resilience) to handle your workloads after scaling down.
  - Check that your [deployment hardware profile](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/deploy/elastic-cloud/ec-change-hardware-profile) (for Elastic Cloud Hosted) or [deployment template](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/deploy/cloud-enterprise/configure-deployment-templates) (for Elastic Cloud Enterprise) is correct for your business use case. For example, if you need to scale due to CPU pressure increases and are using a *Storage Optimized* hardware profile, consider switching to a *CPU Optimized* configuration instead.
  - Review [disk watermarks](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/troubleshoot/elasticsearch/fix-watermark-errors) and ensure the remaining nodes are not close to their limits.
  Read [[https://www.elastic.co/cloud/shared-responsibility](https://www.elastic.co/cloud/shared-responsibility)](https://www.elastic.co/cloud/shared-responsibility) for additional details.
  If in doubt, reach out to Support.
</important>

Check whether the tier you are removing holds regular indices, [searchable snapshots](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/tools/snapshot-and-restore/searchable-snapshots), or both. Use the guidance for the tier you are removing:
- **Warm tier:** This tier typically holds regular indices. Follow [Remove a tier with regular indices](#non-searchable-snapshot-data-tier) unless you have manually mounted searchable snapshots on the tier.
- **Cold tier:** This tier can hold regular indices or [fully mounted](/elastic/docs-content/pull/8213/deploy-manage/tools/snapshot-and-restore/searchable-snapshots#fully-mounted) searchable snapshots. Check for standard ILM-managed searchable snapshot indices:
  ```sh
  GET /_cat/indices/restored-*?expand_wildcards=all
  ```
  For each returned index, check its [current data tier preference](/elastic/docs-content/pull/8213/manage-data/lifecycle/data-tiers#data-tier-allocation-value) to determine whether it is on the tier you are removing.
  Exclude any fully mounted indices associated with the hot tier from the removal inventory. The hot tier is required and is not removed by this procedure.
- **Frozen tier:** This tier only holds [partially mounted](/elastic/docs-content/pull/8213/deploy-manage/tools/snapshot-and-restore/searchable-snapshots#partially-mounted) searchable snapshots. Check for standard ILM-managed indices:
  ```sh
  GET /_cat/indices/partial-*?expand_wildcards=all
  ```

<note>
  Manually mounted searchable snapshots might not use the standard `restored-*` or `partial-*` prefixes. If you mounted snapshots manually, adapt the index names or patterns in these requests to match your configuration.
</note>

- If the tier does not contain any searchable snapshot indices, follow [Remove a tier with regular indices](#non-searchable-snapshot-data-tier).
- If the tier contains searchable snapshot indices, review [Remove a tier with searchable snapshots](#searchable-snapshot-data-tier) and select the appropriate procedure based on how the indices are mounted. If regular indices also remain, restore or move the searchable snapshot indices first, but do not disable the tier yet. Then return to the regular indices procedure.

To learn more about ILM or shard allocation filtering, refer to [Create your index lifecycle policy](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/lifecycle/index-lifecycle-management/configure-lifecycle-policy), [Managing the index lifecycle](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/lifecycle/index-lifecycle-management), and [Shard allocation filters](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/distributed-architecture/shard-allocation-relocation-recovery/index-level-shard-allocation).

### Remove a tier with regular indices

This section covers the removal of a tier that holds regular indices. The goal is to ensure all shard allocation rules allow the data to move to other tiers before you disable the tier. You also need to temporarily stop ILM to prevent new indices from being routed to the tier while you work.
<note>
  If the tier also holds [fully mounted](/elastic/docs-content/pull/8213/deploy-manage/tools/snapshot-and-restore/searchable-snapshots#fully-mounted) searchable snapshots, you have two options:
  - **To keep them as searchable snapshots on another tier**: apply the same steps in this section. Fully mounted searchable snapshots follow the same shard placement rules as regular indices and can be moved by updating their allocation settings.
  - **To restore them to regular indices on another tier**: follow [Remove a tier with searchable snapshots](#searchable-snapshot-data-tier) to restore the indices and delete the original searchable snapshot indices, but do not disable the tier yet. Then return to this section to move any regular indices and disable the tier. You can optionally delete source snapshots that you no longer need.
</note>

When you update the deployment, Elastic Cloud Hosted and Elastic Cloud Enterprise try to move all data from the nodes that are removed. Before applying this change, make sure that the relevant shard allocation filters allow the data to move.
1. Determine which nodes will be removed from the cluster.
   <applies-switch>
   <applies-item title="ess:" applies-to="Elastic Cloud Hosted: Generally available">
   1. Log in to the [Elastic Cloud Console](https://cloud.elastic.co?page=docs&placement=docs-body).
   2. From the **Hosted deployments** page, select your deployment.
   On the **Hosted deployments** page you can narrow your deployments by name, ID, or choose from several other filters. To customize your view, use a combination of filters, or change the format from a grid to a list.
   3. Filter the list of instances by the Data tier you want to disable.
   ![](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/images/cloud-ec-ce-remove-tier-filter-instances.png)
   Note the listed instance IDs. In this example, it would be Instance 2 and Instance 3.
   </applies-item>

   <applies-item title="ece:" applies-to="Elastic Cloud Enterprise: Generally available">
   1. [Log into the Cloud UI](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/deploy/cloud-enterprise/log-into-cloud-ui).
   2. From the **Deployments** page, select your deployment.
   Narrow the list by name, ID, or choose from several other filters. To further define the list, use a combination of filters.
   3. Filter the list of instances by the Data tier you want to disable.
   ![](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/images/cloud-enterprise-ec-ce-remove-tier-filter-instances.png)
   Note the listed instance IDs. In this example, it would be Instance 2 and Instance 3.
   </applies-item>
   </applies-switch>
2. Stop ILM to prevent new indices from being routed to the tier while you work.
   ```sh
   POST /_ilm/stop
   GET /_ilm/status
   ```
   Wait until `operation_mode` is `STOPPED` before proceeding.
3. Determine which shards are allocated to the nodes you want to remove.
   ```sh
   GET /_cat/shards?v&h=index,shard,prirep,state,node
   ```
   Parse the output, looking for shards allocated to the nodes to be removed from the cluster. `Instance #2` is shown as `instance-0000000002` in the output.
   ![A screenshot showing a filtered shard list](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/images/cloud-enterprise-ec-ce-remove-tier-filtered-cat-shards.png)
4. Check and update index allocation rules.
   ILM and manual index configurations use different [index-level shard allocation filters](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/distributed-architecture/shard-allocation-relocation-recovery/index-level-shard-allocation) to control shard placement. For every index that has shards on the nodes you are removing, check its allocation settings and apply the relevant substeps:
   ```sh
   GET /my-index/_settings
   ```
   1. Update `_tier_preference`-based rules.
   Data tier-based ILM policies use `index.routing.allocation.include._tier_preference` to express shard placement as an ordered list of preferred tiers. Indices using this method have settings similar to the following example:
   ```sh
   {
   ...
       "routing": {
           "allocation": {
               "include": {
                   "_tier_preference": "data_warm,data_hot" 
               }
           }
       }
   ...
   }
   ```
   Before disabling the tier, update `_tier_preference` so that the tier where you want the data to move is the first available tier in the list. This allows Elasticsearch to begin relocating the shards before the deployment plan removes the tier.
   Update the setting based on where you want to move the data:
   - To move the data to an existing fallback tier, remove the tier being disabled from the list. For example, when disabling the warm tier, change `data_warm,data_hot` to `data_hot`.
- To move the data to a later lifecycle tier, add that tier before the tier being disabled. For example, when disabling the warm tier, change `data_warm,data_hot` to `data_cold,data_warm,data_hot`.
   The following example moves data from warm to cold:
   ```sh
   PUT /my-index/_settings
   {
       "routing": {
         "allocation": {
           "include": {
               "_tier_preference": "data_cold,data_warm,data_hot" 
           }
         }
       }
   }
   ```
   <note>
   Do not use the frozen tier as a fallback for regular indices. It is reserved for partially mounted searchable snapshots.
   </note>
2. Update node attribute allocation requirement rules.
   Older ILM policies and some custom configurations use `index.routing.allocation.require` to pin shards to nodes with a specific attribute. Indices using this method have settings similar to the following example:
   ```sh
   {
   ...
       "routing": {
           "allocation": {
               "require": {
                   "data": "warm"
               }
           }
       }
   ...
   }
   ```
   Unlike `_tier_preference`, a `require` rule is a hard constraint: if the required nodes are gone, the shard becomes unassigned and Elasticsearch cannot move it automatically. You must remove or redirect these rules before disabling the tier. To remove the attribute requirement:
   ```sh
   PUT /my-index/_settings
   {
       "routing": {
         "allocation": {
           "require": {
               "data": null
           }
         }
       }
   }
   ```
   Alternatively, redirect the index to a different tier by setting `require` to the desired attribute value. For example, to move an index to nodes with `data` attribute of `cold`:
   ```sh
   PUT /my-index/_settings
   {
       "routing": {
         "allocation": {
           "require": {
               "data": "cold"
           }
         }
       }
   }
   ```
   Adjust the `data` value to match the [custom node attributes](https://docs-v3-preview.elastic.dev/elastic/elasticsearch/tree/main/reference/elasticsearch/configuration-reference/node-settings#custom-node-attributes) and [index-level shard allocation filters](https://docs-v3-preview.elastic.dev/elastic/elasticsearch/tree/main/reference/elasticsearch/index-settings/shard-allocation) your indices already use. You cannot send regular indices to the frozen tier.
   If you remove the `require` rule, Elasticsearch does not re-allocate shards immediately. They move when the deployment plan disables the tier. You can instead use the [cluster reroute API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cluster-reroute) or redirect `require` to a different attribute value to start re-allocation before applying the plan.
3. Review other custom allocation rules.
   If indices on the nodes being removed use other [index-level shard allocation filters](https://docs-v3-preview.elastic.dev/elastic/elasticsearch/tree/main/reference/elasticsearch/index-settings/shard-allocation#index-allocation-settings), such as `include`, `exclude`, or `require` configurations not covered earlier, update or remove any rules that would prevent shards from moving to the intended nodes. You can preserve rules unrelated to the tier removal.
   The following example removes all `_name`-based custom allocation filters from an index:
   ```sh
   PUT /my-index/_settings
   {
     "index.routing.allocation.require._name": null,
     "index.routing.allocation.include._name": null,
     "index.routing.allocation.exclude._name": null
   }
   ```
   <important>
   If your allocation setting changes start relocation, wait until [shard allocation and recovery](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/distributed-architecture/shard-allocation-relocation-recovery) finish. Use `GET /_cat/allocation?v=true&s=node` to monitor the nodes that the plan will remove. Shards might remain if you only removed a `require` rule because that change does not force them to move. The deployment plan relocates them when it disables the tier.If shards that you expect to move remain on the original tier, use the [cluster allocation explain](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cluster-allocation-explain) API to determine the cause. Common causes include [disk watermarks](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/troubleshoot/elasticsearch/fix-watermark-errors) or the [`index.routing.allocation.total_shards_per_node`](https://docs-v3-preview.elastic.dev/elastic/elasticsearch/tree/main/reference/elasticsearch/index-settings/total-shards-per-node#total-shards-per-node) limit on the destination nodes.
   </important>
5. Edit the deployment, disabling the data tier.
   If autoscaling is enabled, set the maximum size to 0 for the data tier to ensure autoscaling does not re-enable the data tier.
   Any remaining shards on the tier being disabled are re-allocated across the remaining cluster nodes while applying the plan to disable the data tier. Monitor shard allocation during the data migration phase to ensure all allocation rules have been correctly updated. If the plan fails to migrate data away from the data tier, then re-examine the allocation rules for the indices remaining on that data tier.
6. Once the plan change completes, confirm that `GET /_cat/nodes?v` shows no nodes associated with the disabled tier and that `GET /_cluster/health` reports `green`.
7. Review your ILM policies and consider removing references to the disabled tier to keep them consistent with the deployment topology. This is especially important in older deployments where ILM uses node-attribute-based allocation, as those policies cannot run phases that target nodes that no longer exist.
   For guidance on updating policies, refer to [Configure a lifecycle policy](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/lifecycle/index-lifecycle-management/configure-lifecycle-policy).
8. Re-enable ILM:
   ```sh
   POST /_ilm/start
   ```
9. Verify that ILM is running and that no indices report errors related to the disabled tier:
   ```sh
   GET /_ilm/status
   GET /_all/_ilm/explain?human=true&expand_wildcards=all&only_errors=true
   ```
   Confirm that `operation_mode` is `RUNNING`. Investigate any reported errors and verify that no policy still attempts to allocate data to the disabled tier.


### Remove a tier with searchable snapshots

This section explains how to remove a data tier that contains [searchable snapshot indices](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/deploy-manage/tools/snapshot-and-restore/searchable-snapshots). Your options for preserving the data depend on how the indices are mounted:
- **[Partially mounted searchable snapshots](/elastic/docs-content/pull/8213/deploy-manage/tools/snapshot-and-restore/searchable-snapshots#partially-mounted) on the frozen tier:** The only way to keep the data available as indices when removing the frozen tier is to restore all partially mounted indices as regular indices on another tier. Follow the steps in this section to restore the indices and remove the original searchable snapshot indices.
- **[Fully mounted searchable snapshots](/elastic/docs-content/pull/8213/deploy-manage/tools/snapshot-and-restore/searchable-snapshots#fully-mounted) on the cold tier:** To keep the indices as searchable snapshots, move them to another tier by following [Remove a tier with regular indices](#non-searchable-snapshot-data-tier). This works because fully mounted indices follow the same shard placement rules as regular indices. Alternatively, follow the steps in this section to restore them as regular indices on another tier.

If you do not need to preserve the data, delete the searchable snapshot indices and continue from the shard verification before disabling the tier.
The following procedure captures the snapshot metadata, restores the indices as regular indices, removes the original searchable snapshot indices, optionally deletes the source snapshots, and then disables the tier.
<note>
  The [ILM `searchable_snapshot` action](https://docs-v3-preview.elastic.dev/elastic/elasticsearch/tree/main/reference/elasticsearch/index-lifecycle-actions/ilm-searchable-snapshot) typically prefixes the resulting index with `restored-*` for fully mounted indices in the hot or cold phase and `partial-*` for partially mounted indices in the frozen phase. Manually mounted searchable snapshots might not use these prefixes. In the following steps, adapt the index names and patterns to match the indices on the tier you are removing.
</note>

1. From your deployment page, filter the instance list by the data tier you want to disable and note the instance IDs.
2. Stop ILM to prevent data from migrating to the phase you intend to remove while you work.
   ```sh
   POST /_ilm/stop
   GET /_ilm/status
   ```
   Wait until `operation_mode` is `STOPPED` before proceeding.
3. Using the searchable snapshot indices identified in [Before you remove a data tier](#before-you-remove-a-data-tier), create an inventory of the indices to restore. For standard ILM configurations, you can use `restored-*` for the cold tier and `partial-*` for the frozen tier. For custom configurations, use individual index names or a pattern that matches the relevant indices. For each index, record the index name, source snapshot name, and snapshot repository.
   ```sh
   GET /<searchable-snapshot-index-name-or-pattern>/_settings?filter_path=**.index.store.snapshot.snapshot_name,**.index.store.snapshot.repository_name&expand_wildcards=all
   ```
   ![A screenshot showing a snapshot indices list](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/images/cloud-enterprise-ec-ce-remove-tier-filter-snapshot-indices.png)
4. For each index in the inventory, remove any aliases that were applied to the searchable snapshot index.
   ```sh
   POST /_aliases
   {
     "actions": [
       {
         "remove": {
           "index": "<searchable-snapshot-index-name>",
           "alias": "<alias-name>"
         }
       }
     ]
   }
   ```
   <note>
   If you use a data stream, you can skip this step.
   </note>
   ![A screenshot showing the process of removing a searchable snapshot index alias](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/images/cloud-enterprise-ec-ce-remove-tier-remove-alias.png)
5. Restore each index in the inventory from its source snapshot.
   The restore request creates a regular index on the remaining tiers and prevents it from inheriting the previous ILM policy and rollover alias:
   ```sh
   POST /_snapshot/<snapshot_repository_name>/<searchable_snapshot_name>/_restore 
   {
     "indices": "*", 
     "index_settings": {
       "index.routing.allocation.include._tier_preference": "<data_tiers>", 
       "index.number_of_replicas": 1, 
       "index.lifecycle.name": null,
       "index.lifecycle.rollover_alias": null
     }
   }
   ```
   To manage the restored index with a different ILM policy, apply the policy after the restore and configure its rollover alias if required. Refer to [Switch lifecycle policies](/elastic/docs-content/pull/8213/manage-data/lifecycle/index-lifecycle-management/policy-updates#switch-lifecycle-policies).
   ![A screenshot showing the process of restoring a searchable snapshot to a regular index](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/images/cloud-enterprise-ec-ce-remove-tier-restore-snapshot.png)
6. Once all snapshots are restored, use `GET /_cat/indices/<index-pattern>?v=true` to check that the restored indices are `green` and reflect the expected `docs.count` and `store.size` values.
   If you are using a data stream, you might need to use `GET /_data_stream/<data-stream-name>` to get the list of the backing indices, and then specify them by using `GET /_cat/indices/<backing-index-name>?v=true` to check. When you restore the backing indices of a data stream, some [considerations](/elastic/docs-content/pull/8213/deploy-manage/tools/snapshot-and-restore/restore-snapshot#considerations) apply, and you might need to manually add the restored indices into your data stream or re-create your data stream.
   
7. After verifying each restored index, delete the corresponding original searchable snapshot index from the inventory.
   ```sh
   DELETE /<searchable-snapshot-index-name>
   ```
8. If you no longer need the source snapshots, delete them from Kibana:
   <warning>
   Deleting the source snapshots is not required to disable the tier. Before deleting a snapshot, verify that no mounted index in this or another cluster still depends on it and that it contains no other data you need. The underlying snapshot is the sole full copy of the data for every searchable snapshot index mounted from it.
   </warning>
   1. Find **Snapshot and Restore** in the navigation menu or use the [global search field](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/explore-analyze/find-and-organize/find-apps-and-objects).
2. Select the **Snapshots** tab.
3. Search for the snapshot names recorded in the inventory. If the snapshots were created by the same ILM policy, you can search for the policy name instead.
4. Select the snapshots you want to delete, and click **Delete**.
   ![A screenshot showing the process of deleting snapshots](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/images/cloud-enterprise-ec-ce-remove-tier-remove-snapshots.png)
9. Confirm that no shards remain on the data nodes you want to remove using `GET /_cat/allocation?v=true&s=node`.
10. Edit your deployment from the console to disable the data tier.
   If autoscaling is enabled, set the maximum size to `0` for the data tier to ensure autoscaling does not re-enable it.
11. Once the plan change completes, confirm that `GET /_cat/nodes?v` shows no nodes associated with the disabled tier and that `GET /_cluster/health` reports `green`.
12. Review your ILM policies and update any phases that target the disabled tier. For example, when disabling the frozen tier, remove the `frozen` phase. If you want future indices to continue using searchable snapshots, configure the `searchable_snapshot` action in an appropriate remaining phase. Also update any allocation rules that reference the disabled tier.
   For guidance on updating policies, refer to [Configure a lifecycle policy](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/lifecycle/index-lifecycle-management/configure-lifecycle-policy).
13. Re-enable ILM:
   ```sh
   POST /_ilm/start
   ```
14. Verify that ILM is running and that no indices report errors related to the disabled tier:
   ```sh
   GET /_ilm/status
   GET /_all/_ilm/explain?human=true&expand_wildcards=all&only_errors=true
   ```
   Confirm that `operation_mode` is `RUNNING`. Investigate any reported errors and verify that no policy still attempts to allocate data to the disabled tier.


## Related pages

- [Configure data tiers](/elastic/docs-content/pull/8213/manage-data/lifecycle/data-tiers#configure-data-tiers)
- [Data tier index allocation](/elastic/docs-content/pull/8213/manage-data/lifecycle/data-tiers#data-tier-allocation)
- [Index lifecycle management](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/8213/manage-data/lifecycle/index-lifecycle-management)