Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Rollover API #7685

Merged
merged 9 commits into from
Jul 22, 2024
195 changes: 195 additions & 0 deletions _api-reference/index-apis/rollover.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
---
layout: default
title: Rollover Index
parent: Index APIs
nav_order: 63
---

# Rollover Index

Check failure on line 8 in _api-reference/index-apis/rollover.md

View workflow job for this annotation

GitHub Actions / vale

[vale] _api-reference/index-apis/rollover.md#L8

[OpenSearch.HeadingCapitalization] 'Rollover Index' is a heading and should be in sentence case.
Raw output
{"message": "[OpenSearch.HeadingCapitalization] 'Rollover Index' is a heading and should be in sentence case.", "location": {"path": "_api-reference/index-apis/rollover.md", "range": {"start": {"line": 8, "column": 3}}}, "severity": "ERROR"}
Introduced 1.0
{: .label .label-purple }

The Rollover Index API creates a new index for a data stream or index alias based on the `wait_for_active_shards` setting.

## Path and HTTP methods

```json
POST /<rollover-target>/_rollover/
POST /<rollover-target>/_rollover/<target-index>
```

## Rollover types

You can roll over a data stream, an index alias with one index, or an index alias with a write index.

### Data stream

When you perform a rollover operation on a data stream, the API generates a fresh write index for that stream. Simultaneously, the stream's preceding write index transitions into a regular backing index. Additionally, the rollover process increments the generation count of the data stream. Data stream rollovers do not support specifying index settings in the request body.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"transitions" => "transforms"?

Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

### Index alias with one index

When initiating a rollover on an index alias associated with a single index, the API generates a new index and disassociates the original index from the alias.

### Index alias with a write index

When an index alias references multiple indexes, one index must be designated as the write index. During a rollover, the API creates a new write index with its `is_write_index` property set to `true`, while updating the previous write index by setting its `is_write_index property` to `false.`
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

## Incrementing index names for an alias

During the rollover process of an index alias, if you don't specify a custom name and the current index's name ends with a hyphen followed by a number (for example, `my-index-000001` or `my-index-3`), the rollover operation will automatically increment that number for the new index's name. For instance, rolling over `my-index-000001` will generate `my-index-000002`. The numeric portion is always padded with leading zeros to ensure a consistent length of six characters.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

## Using date math with index rollovers

When using an index alias for time-series data, you can leverage [date math](https://opensearch.org/docs/latest/field-types/supported-field-types/date/) in the index name to track the rollover date. For example, you can create an alias pointing to `my-index-{now/d}-000001`. If you create an alias on June 11, 2029, then the index name would be `my-index-2029.06.11-000001`. On a rollover on June 12, 2029, the new index would be `my-index-2029.06.12-000002`. See [Roll over an index alias with a write index](#rolling-over-an-index-alias-with-a-write-index) for a practical example.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

## Path parameters

The Rollover Index API supports the parameters listed in the following table.

Parameter | Type | Description
:--- | :--- | :---
`<rollover-target>` | String | The name of the data stream or index alias to roll over. Required. |
`<target-index>` | String | The name of the index to create. Supports date math. Data streams do not support this parameter. If the name of the alias's current write index does not end with `-` and a number, such as `my-index-000001` or `my-index-2`, then the parameter is required.

## Query parameters

The following table lists the supported query parameters.

Parameter | Type | Description
:--- | :--- | :---
`cluster_manager_timeout` | Time | The amount of time to wait for a connection to the cluster manager node. Default is `30s`
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
`timeout` | Time | The amount of time to wait for a response. Default is `30s`.
`wait_for_active_shards` | String | The number of active shards that must be available before OpenSearch processes the request. Default is `1` (only the primary shard). You can also set to `all` or a positive integer. Values greater than `1` require replicas. For example, if you specify a value of `3`, the index must have two replicas distributed across two additional nodes for the operation to succeed.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

## Request body

The following request body options are supported.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

### `alias`

The `alias` parameter specifies the alias name as the key. It is required when the `template` option exists in the request body. The object body contains the following optional parameters:
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved


Parameter | Type | Description
:--- | :--- | :---
`filter` | Query DSL object | The query that limits documents the alias can access.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's clarify a bit. Limits what about the documents? "limits the number of documents"?

`index_routing` | String | The value which routes indexing operations to a specific shard. When specified, overwrites the `routing` value for indexing operations.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
`is_hidden` | Boolean | Hides or unhides the alias. When `true`, the alias is hidden. Default is `false`. Indexes for the alias must have matching values for this setting.

Check failure on line 77 in _api-reference/index-apis/rollover.md

View workflow job for this annotation

GitHub Actions / vale

[vale] _api-reference/index-apis/rollover.md#L77

[OpenSearch.Spelling] Error: unhides. If you are referencing a setting, variable, format, function, or repository, surround it with tic marks.
Raw output
{"message": "[OpenSearch.Spelling] Error: unhides. If you are referencing a setting, variable, format, function, or repository, surround it with tic marks.", "location": {"path": "_api-reference/index-apis/rollover.md", "range": {"start": {"line": 77, "column": 34}}}, "severity": "ERROR"}
`is_write_index` | Boolean | Specifies the write index. When `true`, the index is the write index for the alias. Default is `false`.
`routing` | String | The value used to route index and search operations to a specific shard.
`search_routing` | String | Routes search operations to a specific shard. When specified, it overwrites `routing` for search operations.

### `mappings`

The `mappings` parameter specifies the index field mappings. It is optional. See [Mappings and field types](https://opensearch.org/docs/latest/field-types/) for more details.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

### `conditions`

The `conditions` parameter is an optional object defining criteria for triggering the rollover. When provided, OpenSearch only rolls over if the current index satisfies one or more specified conditions. If omitted, the rollover occurs unconditionally without prerequisites.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

The object body supports the following parameters.

Parameter | Type | Description
:--- | :--- | :---
| `max_age` | Time units | Triggers a 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` or `index.lifecycle.origination_date` settings. Optional. |
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
`max_docs` | Integer | Triggers a 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. Optional
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
`max_size` | Byte units | Triggers rollover when the index reaches a specified size, calculated as the total size of all primary shards. Replicas are not counted. Use the `_cat indices` API and check the `pri.store.size` value to see the current index size. Optional.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
`max_primary_shard_size` | 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. To see the current shard size, use the `_cat shards` API. The `store` value shows the size of each shard, and `prirep` indicates whether a shard is a primary (`p`) or a replica (`r`). Optional.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

### `settings`

The `settings` parameter specifies the index configuration options. See [Index settings](https://opensearch.org/docs/latest/install-and-configure/configuring-opensearch/index-settings/) for more details.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

## Example requests

The following examples illustrate using the Rollover Index API. A rollover occurs when one or more of the specified conditions are met:

- The index was created 5 or more days ago.
- The index contains 500 or more documents.
- The index’s largest primary shard is 100 GB or larger.
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

### Rolling over a data stream

The following request rolls over the data stream if the current write index meets any of the specified conditions:

```
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

json?

Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
POST my-data-stream/_rollover
{
"conditions": {
"max_age": "5d",
"max_docs": 500,
"max_primary_shard_size": "100gb"
}
}
```
{% include copy-curl.html %}

### Rolling over an index alias with a write index

The following request creates a date-time index and sets it as the write index for `my-alias`:

```
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

json?

Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
PUT <my-index-{now/d}-000001>
PUT %3Cmy-index-%7Bnow%2Fd%7D-000001%3E
{
"aliases": {
"my-alias": {
"is_write_index": true
}
}
}
```
{% include copy-curl.html %}

The next request performs a rollover using the alias:

```
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

json?

Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
POST my-alias/_rollover
{
"conditions": {
"max_age": "5d",
"max_docs": 500,
"max_primary_shard_size": "100gb"
}
}
```
{% include copy-curl.html %}

### Specifying settings during a rollover

In most cases, you can use an index template to automatically configure the indexes created during a rollover operation. However, when rolling over an index alias, you can use the Rollover Index API to introduce additional index settings or override the settings defined in the template by sending the following request:

```
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

json?

Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
POST my-alias/_rollover
{
"settings": {
"index.number_of_shards": 4
}
}
```
{% include copy-curl.html %}


## Example response

OpenSearch returns the following response confirming all conditions except `max_primary_shard_size` were met:
Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved

```
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

json?

Naarcha-AWS marked this conversation as resolved.
Show resolved Hide resolved
{
"acknowledged": true,
"shards_acknowledged": true,
"old_index": ".ds-my-data-stream-2029.06.11-000001",
"new_index": ".ds-my-data-stream-2029.06.12-000002",
"rolled_over": true,
"dry_run": false,
"conditions": {
"[max_age: 5d]": true,
"[max_docs: 500]": true,
"[max_primary_shard_size: 100gb]": false
}
}
```




Loading