﻿---
title: Rollover
description: Phases allowed: hot. Rolls over a target to a new index when the existing index satisfies the specified rollover conditions. A rollover target can be...
url: https://www.elastic.co/elastic/docs-builder/docs/3016/reference/elasticsearch/index-lifecycle-actions/ilm-rollover
products:
  - Elasticsearch
---

# Rollover
Phases allowed: hot.
Rolls over a target to a new index when the existing index satisfies the specified rollover conditions.
<note>
  When an index is rolled over, the previous index’s age is updated to reflect the rollover time. This date, rather than the index’s `creation_date`, is used in index lifecycle management `min_age` phase calculations. [Learn more](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/troubleshoot/elasticsearch/index-lifecycle-management-errors#min-age-calculation).
</note>

<important>
  If the rollover action is used on a [follower index](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ccr-follow), policy execution waits until the leader index rolls over (or is [otherwise marked complete](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/manage-data/lifecycle/index-lifecycle-management/skip-rollover)), then converts the follower index into a regular index with the [Unfollow action](https://www.elastic.co/elastic/docs-builder/docs/3016/reference/elasticsearch/index-lifecycle-actions/ilm-unfollow).
</important>

A rollover target can be a [data stream](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/manage-data/data-store/data-streams) or an [index alias](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/manage-data/data-store/aliases). When targeting a data stream, the new index becomes the data stream’s write index and its generation is incremented.
To roll over an index alias, the alias and its write index must meet the following conditions:
- The index name must match the pattern *^.*-\d+$*, for example (`my-index-000001`).
- The `index.lifecycle.rollover_alias` must be configured as the alias to roll over.
- The index must be the [write index](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/manage-data/data-store/aliases#write-index) for the alias.

For example, if `my-index-000001` has the alias `my_data`, the following settings must be configured.
```json

{
  "settings": {
    "index.lifecycle.name": "my_policy",
    "index.lifecycle.rollover_alias": "my_data"
  },
  "aliases": {
    "my_data": {
      "is_write_index": true
    }
  }
}
```


## Options

A rollover action must specify at least one `max_*` condition, it may include zero or more `min_*` conditions. An empty rollover action is invalid.
The index will roll over once any `max_*` condition is satisfied and all `min_*` conditions are satisfied. Note, however, that empty indices are not rolled over by default.
<definitions>
  <definition term="max_age">
    (Optional,  [time units](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/api-conventions#time-units)) Triggers rollover after the maximum elapsed time from index creation is reached. The elapsed time is always calculated since the index creation time, even if the index origination date is configured to a custom date, such as when using the [index.lifecycle.parse_origination_date](/elastic/docs-builder/docs/3016/reference/elasticsearch/configuration-reference/index-lifecycle-management-settings#index-lifecycle-parse-origination-date) or [index.lifecycle.origination_date](/elastic/docs-builder/docs/3016/reference/elasticsearch/configuration-reference/index-lifecycle-management-settings#index-lifecycle-origination-date) settings.
  </definition>
  <definition term="max_docs">
    (Optional, integer) Triggers rollover after the specified maximum number of documents is reached. Documents added since the last refresh are not included in the document count. The document count does **not** include documents in replica shards.
  </definition>
  <definition term="max_size Elastic Stack: Deprecated since 9.3">
    (Optional, [byte units](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/api-conventions#byte-units)) Triggers rollover when the index reaches a certain size. This is the total size of all primary shards in the index. Replicas are not counted toward the maximum index size.
    <admonition title="Deprecated">
      The `max_size` rollover attribute will be removed in a future version. Use `max_primary_shard_size` instead.
    </admonition>
    <tip>
      To see the current index size, use the [_cat indices](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-indices) API. The `pri.store.size` value shows the combined size of all primary shards.
    </tip>
  </definition>
  <definition term="max_primary_shard_size">
    (Optional, [byte units](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/api-conventions#byte-units)) Triggers rollover when the largest primary shard in the index reaches a certain size. This is the maximum size of the primary shards in the index. As with `max_size`, replicas are ignored.
    <tip>
      To see the current shard size, use the [_cat shards](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-shards) API. The `store` value shows the size each shard, and `prirep` indicates whether a shard is a primary (`p`) or a replica (`r`).
    </tip>
  </definition>
  <definition term="max_primary_shard_docs">
    (Optional, integer) Triggers rollover when the largest primary shard in the index reaches a certain number of documents. This is the maximum docs of the primary shards in the index. As with `max_docs`, replicas are ignored.
    <tip>
      The rollover action implicitly always rolls over a data stream or alias if one or more shards contain 200,000,000 or more documents. Normally a shard will reach 50GB long before it reaches 200M documents, but this isn’t the case for space efficient data sets. Search performance can suffer if a shard contains more than 200M documents, which is the reason for the built-in limit. Setting the `max_primary_shard_docs` to higher than 200,000,000 will have no effect. For more information about recommended limits, refer to [guidance for shard sizes](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/deploy-manage/production-guidance/optimize-performance/size-shards)
    </tip>
    <tip>
      To see the current shard docs, use the [_cat shards](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-shards) API. The `docs` value shows the number of documents each shard.
    </tip>
  </definition>
  <definition term="min_age">
    (Optional,  [time units](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/api-conventions#time-units)) Prevents rollover until after the minimum elapsed time from index creation is reached. See notes on `max_age`.
  </definition>
  <definition term="min_docs">
    (Optional, integer) Prevents rollover until after the specified minimum number of documents is reached. See notes on `max_docs`.
  </definition>
  <definition term="min_size">
    (Optional, [byte units](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/api-conventions#byte-units)) Prevents rollover until the index reaches a certain size. See notes on `max_size`.
  </definition>
  <definition term="min_primary_shard_size">
    (Optional, [byte units](/elastic/docs-builder/docs/3016/reference/elasticsearch/rest-apis/api-conventions#byte-units)) Prevents rollover until the largest primary shard in the index reaches a certain size. See notes on `max_primary_shard_size`.
  </definition>
  <definition term="min_primary_shard_docs">
    (Optional, integer) Prevents rollover until the largest primary shard in the index reaches a certain number of documents. See notes on `max_primary_shard_docs`.
  </definition>
</definitions>

<important>
  Empty indices will not be rolled over, even if they have an associated `max_age` that would otherwise result in a roll over occurring. A policy can override this behavior, and explicitly opt in to rolling over empty indices, by adding a `"min_docs": 0` condition. This can also be disabled on a cluster-wide basis by setting `indices.lifecycle.rollover.only_if_has_documents` to `false`.
</important>

<important>
  The rollover action implicitly always rolls over a data stream or alias if one or more shards contain 200000000 or more documents. Normally a shard will reach 50GB long before it reaches 200M documents, but this isn’t the case for space efficient data sets. Search performance will very likely suffer if a shard contains more than 200M documents. This is the reason of the builtin limit.
</important>


## Example


### Roll over based on largest primary shard size

This example rolls the index over when its largest primary shard is at least 50 gigabytes.
```json

{
  "policy": {
    "phases": {
      "hot": {
        "actions": {
          "rollover" : {
            "max_primary_shard_size": "50gb"
          }
        }
      }
    }
  }
}
```


### Roll over based on index size

This example rolls the index over when it is at least 100 gigabytes.
```json

{
  "policy": {
    "phases": {
      "hot": {
        "actions": {
          "rollover" : {
            "max_size": "100gb"
          }
        }
      }
    }
  }
}
```


### Roll over based on document count

This example rolls the index over when it contains at least one hundred million documents.
```json

{
  "policy": {
    "phases": {
      "hot": {
        "actions": {
          "rollover" : {
            "max_docs": 100000000
          }
        }
      }
    }
  }
}
```


### Roll over based on document count of the largest primary shard

This example rolls the index over when it contains at least ten million documents of the largest primary shard.
```json

{
  "policy": {
    "phases": {
      "hot": {
        "actions": {
          "rollover" : {
            "max_primary_shard_docs": 10000000
          }
        }
      }
    }
  }
}
```


### Roll over based on index age

This example rolls the index over if it was created at least 7 days ago.
```json

{
  "policy": {
    "phases": {
      "hot": {
        "actions": {
          "rollover" : {
            "max_age": "7d"
          }
        }
      }
    }
  }
}
```


### Roll over using multiple conditions

When you specify multiple rollover conditions, the index is rolled over when *any* of the `max_*` and *all* of the `min_*` conditions are met. This example rolls the index over if it is at least 7 days old or at least 100 gigabytes, but only as long as the index contains at least 1000 documents.
```json

{
  "policy": {
    "phases": {
      "hot": {
        "actions": {
          "rollover" : {
            "max_age": "7d",
            "max_size": "100gb",
            "min_docs": 1000
          }
        }
      }
    }
  }
}
```


### Roll over while maintaining shard sizes

This example rolls the index over when the primary shard size is at least 50gb, or when the index is at least 30 days old, but only as long as a primary shard is at least 1gb. For low-volume indices, this prevents the creation of many small shards.
```json

{
  "policy": {
    "phases": {
      "hot": {
        "actions": {
          "rollover" : {
            "max_primary_shard_size": "50gb",
            "max_age": "30d",
            "min_primary_shard_size": "1gb"
          }
        }
      }
    }
  }
}
```


### Rollover condition blocks phase transition

The rollover action only completes if one of its conditions is met. This means that any subsequent phases are blocked until rollover succeeds.
For example, the following policy deletes the index one day after it rolls over. It does not delete the index one day after it was created.
```json

{
  "policy": {
    "phases": {
      "hot": {
        "actions": {
          "rollover": {
            "max_size": "50gb"
          }
        }
      },
      "delete": {
        "min_age": "1d",
        "actions": {
          "delete": {}
        }
      }
    }
  }
}
```