2016-06-08 18:32:22 -04:00
|
|
|
[[indices-rollover-index]]
|
2019-09-23 09:18:01 -04:00
|
|
|
=== Rollover index API
|
|
|
|
++++
|
|
|
|
<titleabbrev>Rollover index</titleabbrev>
|
|
|
|
++++
|
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
Creates a new index for a rollover target when the target's existing index meets
|
|
|
|
a condition you provide. A rollover target can be either an
|
|
|
|
<<indices-aliases, index alias>> or a
|
|
|
|
<<indices-create-data-stream, data stream>>. When targeting an alias, the alias
|
|
|
|
is updated to point to the new index. When targeting a data stream, the new
|
|
|
|
index becomes the data stream's write index and its generation is incremented.
|
2019-09-23 09:18:01 -04:00
|
|
|
|
|
|
|
[source,console]
|
|
|
|
----
|
|
|
|
POST /alias1/_rollover/twitter
|
|
|
|
{
|
|
|
|
"conditions": {
|
|
|
|
"max_age": "7d",
|
|
|
|
"max_docs": 1000,
|
|
|
|
"max_size": "5gb"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
----
|
|
|
|
// TEST[s/^/PUT my_old_index_name\nPUT my_old_index_name\/_alias\/alias1\n/]
|
|
|
|
|
|
|
|
|
|
|
|
[[rollover-index-api-request]]
|
|
|
|
==== {api-request-title}
|
|
|
|
|
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
`POST /<rollover-target>/_rollover/<target-index>`
|
2019-09-23 09:18:01 -04:00
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
`POST /<rollover-target>/_rollover/`
|
2019-09-23 09:18:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
[[rollover-index-api-desc]]
|
|
|
|
==== {api-description-title}
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
The rollover index API rolls a rollover target to a new index when
|
2019-04-03 13:49:20 -04:00
|
|
|
the existing index meets a condition you provide. You can use this API to retire
|
|
|
|
an index that becomes too large or too old.
|
|
|
|
|
|
|
|
NOTE: To roll over an index, a condition must be met *when you call the API*.
|
|
|
|
{es} does not monitor the index after you receive an API response. To
|
|
|
|
automatically roll over indices when a condition is met, you can use {es}'s
|
|
|
|
<<index-lifecycle-management, index lifecycle management (ILM) policies>>.
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
The rollover index API accepts a rollover target name
|
2019-10-08 08:34:39 -04:00
|
|
|
and a list of `conditions`.
|
2018-07-30 17:32:55 -04:00
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
If the specified rollover target is an alias pointing to a single index,
|
2019-10-08 08:34:39 -04:00
|
|
|
the rollover request:
|
2018-07-30 17:32:55 -04:00
|
|
|
|
2019-10-08 08:34:39 -04:00
|
|
|
. Creates a new index
|
|
|
|
. Adds the alias to the new index
|
|
|
|
. Removes the alias from the original index
|
2018-07-30 17:32:55 -04:00
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
If the specified rollover target is an alias pointing to multiple indices,
|
2019-10-08 08:34:39 -04:00
|
|
|
one of these indices must have `is_write_index` set to `true`.
|
2020-06-09 07:57:16 -04:00
|
|
|
In this case, the rollover request:
|
2018-07-30 17:32:55 -04:00
|
|
|
|
2019-10-08 08:34:39 -04:00
|
|
|
. Creates a new index
|
|
|
|
. Sets `is_write_index` to `true` for the new index
|
|
|
|
. Sets `is_write_index` to `false` for the original index
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
If the specified rollover target is a data stream, the rollover request:
|
|
|
|
|
|
|
|
. Creates a new index
|
|
|
|
. Adds the new index as a backing index and the write index on the data stream
|
|
|
|
. Increments the `generation` attribute of the data stream
|
2019-02-19 12:54:15 -05:00
|
|
|
|
2019-09-23 09:18:01 -04:00
|
|
|
[[rollover-wait-active-shards]]
|
|
|
|
===== Wait for active shards
|
|
|
|
|
|
|
|
Because the rollover operation creates a new index to rollover to, the
|
|
|
|
<<create-index-wait-for-active-shards,`wait_for_active_shards`>> setting on
|
|
|
|
index creation applies to the rollover action.
|
|
|
|
|
|
|
|
|
|
|
|
[[rollover-index-api-path-params]]
|
|
|
|
==== {api-path-parms-title}
|
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
`<rollover-target>`::
|
|
|
|
(Required*, string)
|
|
|
|
Name of the existing index alias or data stream on which to
|
|
|
|
to assign to the target index. perform the rollover.
|
2019-09-23 09:18:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
`<target-index>`::
|
|
|
|
+
|
|
|
|
--
|
|
|
|
(Optional*, string)
|
|
|
|
Name of the target index to create and assign the index alias.
|
|
|
|
|
2020-06-01 19:42:53 -04:00
|
|
|
include::{es-repo-dir}/indices/create-index.asciidoc[tag=index-name-reqs]
|
2019-09-23 09:18:01 -04:00
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
*This parameter is not permitted if `rollover-target` is a data stream. In
|
|
|
|
that case, the new index name will be in the form `.ds-<rollover-target>-000001`
|
|
|
|
where the zero-padded number of length 6 is the generation of the data stream.
|
|
|
|
|
|
|
|
If `rollover-target` is an alias that is assigned to an index name that ends
|
|
|
|
with `-` and a number such as `logs-000001`. In this case, the name of the new
|
|
|
|
index follows the same pattern and increments the number. For example,
|
|
|
|
`logs-000001` increments to `logs-000002`. This number is zero-padded with a
|
|
|
|
length of 6, regardless of the prior index name.
|
|
|
|
|
|
|
|
If the existing index for the alias does not match this pattern, this parameter
|
|
|
|
is required.
|
|
|
|
|
2019-09-23 09:18:01 -04:00
|
|
|
--
|
|
|
|
|
|
|
|
|
|
|
|
[[rollover-index-api-query-params]]
|
|
|
|
==== {api-query-parms-title}
|
|
|
|
|
|
|
|
`dry_run`::
|
|
|
|
(Optional, boolean)
|
|
|
|
If `true`,
|
|
|
|
the request checks whether the index matches provided conditions
|
|
|
|
but does not perform a rollover.
|
|
|
|
Defaults to `false`.
|
|
|
|
|
2020-06-01 19:42:53 -04:00
|
|
|
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=include-type-name]
|
2019-09-23 09:18:01 -04:00
|
|
|
|
2020-06-01 19:42:53 -04:00
|
|
|
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=wait_for_active_shards]
|
2019-09-23 09:18:01 -04:00
|
|
|
|
2020-06-01 19:42:53 -04:00
|
|
|
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=timeoutparms]
|
2019-09-23 09:18:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
[[rollover-index-api-request-body]]
|
|
|
|
==== {api-request-body-title}
|
|
|
|
|
2020-06-01 19:42:53 -04:00
|
|
|
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=aliases]
|
2019-09-23 09:18:01 -04:00
|
|
|
|
|
|
|
`conditions`::
|
|
|
|
+
|
|
|
|
--
|
2020-06-09 07:57:16 -04:00
|
|
|
(Optional, object)
|
|
|
|
If supplied, the set of conditions the rollover target's existing index must
|
|
|
|
meet to roll over. If omitted, the rollover will be performed unconditionally.
|
2019-09-23 09:18:01 -04:00
|
|
|
|
|
|
|
Parameters include:
|
|
|
|
|
|
|
|
`max_age`::
|
|
|
|
(Optional, <<time-units, time units>>)
|
|
|
|
Maximum age of the index.
|
|
|
|
|
|
|
|
`max_docs`::
|
|
|
|
(Optional, integer)
|
|
|
|
Maximum number of documents in the index.
|
2020-05-11 18:10:57 -04:00
|
|
|
Documents added since the last refresh are not included in the document count.
|
|
|
|
The document count does *not* include documents in replica shards.
|
2019-09-23 09:18:01 -04:00
|
|
|
|
|
|
|
`max_size`::
|
|
|
|
(Optional, <<byte-units, byte units>>)
|
2020-05-28 09:08:25 -04:00
|
|
|
Maximum index size.
|
|
|
|
This is the total size of all primary shards in the index.
|
2020-05-12 18:00:48 -04:00
|
|
|
Replicas are not counted toward the maximum index size.
|
|
|
|
|
2020-05-28 09:08:25 -04:00
|
|
|
TIP: To see the current index size, use the <<cat-indices, _cat indices>> API.
|
|
|
|
The `pri.store.size` value shows the combined size of all primary shards.
|
2019-09-23 09:18:01 -04:00
|
|
|
--
|
|
|
|
|
2020-06-01 19:42:53 -04:00
|
|
|
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=mappings]
|
2019-09-23 09:18:01 -04:00
|
|
|
|
2020-06-01 19:42:53 -04:00
|
|
|
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=settings]
|
2019-09-23 09:18:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
[[rollover-index-api-example]]
|
|
|
|
==== {api-examples-title}
|
|
|
|
|
|
|
|
[[rollover-index-basic-ex]]
|
|
|
|
===== Basic example
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2019-09-06 11:31:13 -04:00
|
|
|
[source,console]
|
2016-06-08 18:32:22 -04:00
|
|
|
--------------------------------------------------
|
2016-07-26 14:50:20 -04:00
|
|
|
PUT /logs-000001 <1>
|
2016-06-15 14:57:17 -04:00
|
|
|
{
|
|
|
|
"aliases": {
|
|
|
|
"logs_write": {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-01 17:08:18 -04:00
|
|
|
# Add > 1000 documents to logs-000001
|
|
|
|
|
|
|
|
POST /logs_write/_rollover <2>
|
2016-06-15 14:57:17 -04:00
|
|
|
{
|
|
|
|
"conditions": {
|
|
|
|
"max_age": "7d",
|
2017-11-04 19:51:48 -04:00
|
|
|
"max_docs": 1000,
|
|
|
|
"max_size": "5gb"
|
2016-06-15 14:57:17 -04:00
|
|
|
}
|
|
|
|
}
|
2016-06-08 18:32:22 -04:00
|
|
|
--------------------------------------------------
|
2016-09-01 17:08:18 -04:00
|
|
|
// TEST[setup:huge_twitter]
|
|
|
|
// TEST[s/# Add > 1000 documents to logs-000001/POST _reindex?refresh\n{"source":{"index":"twitter"},"dest":{"index":"logs-000001"}}/]
|
2016-07-26 14:50:20 -04:00
|
|
|
<1> Creates an index called `logs-0000001` with the alias `logs_write`.
|
2016-06-15 14:57:17 -04:00
|
|
|
<2> If the index pointed to by `logs_write` was created 7 or more days ago, or
|
2017-11-04 19:51:48 -04:00
|
|
|
contains 1,000 or more documents, or has an index size at least around 5GB, then the `logs-000002` index is created
|
2016-07-26 14:50:20 -04:00
|
|
|
and the `logs_write` alias is updated to point to `logs-000002`.
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2019-09-23 09:18:01 -04:00
|
|
|
The API returns the following response:
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2019-09-06 09:22:08 -04:00
|
|
|
[source,console-result]
|
2016-06-08 18:32:22 -04:00
|
|
|
--------------------------------------------------
|
2016-06-15 14:57:17 -04:00
|
|
|
{
|
2016-09-01 17:08:18 -04:00
|
|
|
"acknowledged": true,
|
|
|
|
"shards_acknowledged": true,
|
2016-07-26 14:50:20 -04:00
|
|
|
"old_index": "logs-000001",
|
|
|
|
"new_index": "logs-000002",
|
2016-06-15 14:57:17 -04:00
|
|
|
"rolled_over": true, <1>
|
|
|
|
"dry_run": false, <2>
|
|
|
|
"conditions": { <3>
|
|
|
|
"[max_age: 7d]": false,
|
2017-11-04 19:51:48 -04:00
|
|
|
"[max_docs: 1000]": true,
|
|
|
|
"[max_size: 5gb]": false,
|
2016-06-15 14:57:17 -04:00
|
|
|
}
|
|
|
|
}
|
2016-06-08 18:32:22 -04:00
|
|
|
--------------------------------------------------
|
2019-09-06 09:22:08 -04:00
|
|
|
|
2016-09-02 10:08:34 -04:00
|
|
|
<1> Whether the index was rolled over.
|
|
|
|
<2> Whether the rollover was dry run.
|
|
|
|
<3> The result of each condition.
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2020-05-28 09:08:25 -04:00
|
|
|
|
|
|
|
[[rollover-data-stream-ex]]
|
|
|
|
===== Roll over a data stream
|
|
|
|
|
|
|
|
[source,console]
|
|
|
|
-----------------------------------
|
|
|
|
PUT _index_template/template
|
|
|
|
{
|
|
|
|
"index_patterns": ["my-data-stream*"],
|
2020-07-14 17:28:43 -04:00
|
|
|
"data_stream": { }
|
2020-05-28 09:08:25 -04:00
|
|
|
}
|
|
|
|
-----------------------------------
|
|
|
|
// TEST
|
|
|
|
|
|
|
|
[source,console]
|
|
|
|
--------------------------------------------------
|
|
|
|
PUT /_data_stream/my-data-stream <1>
|
|
|
|
|
|
|
|
# Add > 1000 documents to my-data-stream
|
|
|
|
|
|
|
|
POST /my-data-stream/_rollover <2>
|
|
|
|
{
|
|
|
|
"conditions" : {
|
2020-07-08 11:30:46 -04:00
|
|
|
"max_age": "7d",
|
|
|
|
"max_docs": 1000,
|
|
|
|
"max_size": "5gb"
|
2020-05-28 09:08:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
// TEST[continued]
|
|
|
|
// TEST[setup:huge_twitter]
|
2020-07-08 11:30:46 -04:00
|
|
|
// TEST[s/# Add > 1000 documents to my-data-stream/POST _reindex?refresh\n{"source":{"index":"twitter"},"dest":{"index":"my-data-stream","op_type":"create"},"script":{"source":"ctx._source.put('@timestamp',ctx._source.remove('date'))"}}/]
|
2020-05-28 09:08:25 -04:00
|
|
|
<1> Creates a data stream called `my-data-stream` with one initial backing index
|
|
|
|
named `my-data-stream-000001`.
|
|
|
|
<2> This request creates a new backing index, `my-data-stream-000002`, and adds
|
|
|
|
it as the write index for the `my-data-stream` data stream if the current
|
|
|
|
write index meets at least one of the following conditions:
|
|
|
|
+
|
|
|
|
--
|
|
|
|
* The index was created 7 or more days ago.
|
|
|
|
* The index has an index size of 5GB or greater.
|
|
|
|
* The index contains 1,000 or more documents.
|
|
|
|
--
|
|
|
|
|
|
|
|
The API returns the following response:
|
|
|
|
|
|
|
|
[source,console-result]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"acknowledged": true,
|
|
|
|
"shards_acknowledged": true,
|
2020-06-09 10:31:34 -04:00
|
|
|
"old_index": ".ds-my-data-stream-000001", <1>
|
|
|
|
"new_index": ".ds-my-data-stream-000002", <2>
|
2020-05-28 09:08:25 -04:00
|
|
|
"rolled_over": true, <3>
|
|
|
|
"dry_run": false, <4>
|
|
|
|
"conditions": { <5>
|
|
|
|
"[max_age: 7d]": false,
|
|
|
|
"[max_docs: 1000]": true,
|
|
|
|
"[max_size: 5gb]": false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
<1> The previous write index for the data stream.
|
|
|
|
<2> The new write index for the data stream.
|
|
|
|
<3> Whether the index was rolled over.
|
|
|
|
<4> Whether the rollover was dry run.
|
|
|
|
<5> The result of each condition.
|
|
|
|
|
|
|
|
////
|
|
|
|
[source,console]
|
|
|
|
-----------------------------------
|
|
|
|
DELETE /_data_stream/my-data-stream
|
2020-07-08 11:30:46 -04:00
|
|
|
DELETE /_index_template/template
|
2020-05-28 09:08:25 -04:00
|
|
|
-----------------------------------
|
|
|
|
// TEST[continued]
|
|
|
|
////
|
|
|
|
|
2019-09-23 09:18:01 -04:00
|
|
|
[[rollover-index-settings-ex]]
|
|
|
|
===== Specify settings for the target index
|
|
|
|
|
|
|
|
The settings, mappings, and aliases for the new index are taken from any
|
2020-06-09 07:57:16 -04:00
|
|
|
matching <<indices-templates,index templates>>. If the rollover target is an
|
|
|
|
index alias, you can specify `settings`, `mappings`, and `aliases` in the body
|
|
|
|
of the request just like the <<indices-create-index,create index>> API. Values
|
|
|
|
specified in the request override any values set in matching index templates.
|
|
|
|
For example, the following `rollover` request overrides the
|
|
|
|
`index.number_of_shards` setting:
|
2019-09-23 09:18:01 -04:00
|
|
|
|
|
|
|
[source,console]
|
|
|
|
--------------------------------------------------
|
|
|
|
PUT /logs-000001
|
|
|
|
{
|
|
|
|
"aliases": {
|
|
|
|
"logs_write": {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
POST /logs_write/_rollover
|
|
|
|
{
|
|
|
|
"conditions" : {
|
|
|
|
"max_age": "7d",
|
|
|
|
"max_docs": 1000,
|
|
|
|
"max_size": "5gb"
|
|
|
|
},
|
|
|
|
"settings": {
|
|
|
|
"index.number_of_shards": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
[[rollover-index-specify-index-ex]]
|
|
|
|
===== Specify a target index name
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
If the rollover target is an index alias and the name of the existing index ends
|
|
|
|
with `-` and a number -- e.g. `logs-000001` -- then the name of the new index
|
|
|
|
will follow the same pattern, incrementing the number (`logs-000002`). The
|
|
|
|
number is zero-padded with a length of 6, regardless of the old index name.
|
2016-06-09 13:43:19 -04:00
|
|
|
|
2016-06-15 14:57:17 -04:00
|
|
|
If the old name doesn't match this pattern then you must specify the name for
|
|
|
|
the new index as follows:
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2019-09-06 11:31:13 -04:00
|
|
|
[source,console]
|
2016-06-08 18:32:22 -04:00
|
|
|
--------------------------------------------------
|
2016-09-01 17:08:18 -04:00
|
|
|
POST /my_alias/_rollover/my_new_index_name
|
|
|
|
{
|
|
|
|
"conditions": {
|
|
|
|
"max_age": "7d",
|
2017-11-04 19:51:48 -04:00
|
|
|
"max_docs": 1000,
|
|
|
|
"max_size": "5gb"
|
2016-09-01 17:08:18 -04:00
|
|
|
}
|
|
|
|
}
|
2016-06-15 14:57:17 -04:00
|
|
|
--------------------------------------------------
|
2016-09-01 17:08:18 -04:00
|
|
|
// TEST[s/^/PUT my_old_index_name\nPUT my_old_index_name\/_alias\/my_alias\n/]
|
2016-06-15 14:57:17 -04:00
|
|
|
|
2019-09-23 09:18:01 -04:00
|
|
|
|
|
|
|
[[_using_date_math_with_the_rollover_api]]
|
|
|
|
===== Use date math with a rollover
|
2016-10-07 09:49:28 -04:00
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
If the rollover target is an index alias, it can be useful to use
|
|
|
|
<<date-math-index-names,date math>> to name the rollover index according to the
|
|
|
|
date that the index rolled over, e.g. `logstash-2016.02.03`. The rollover API
|
|
|
|
supports date math, but requires the index name to end with a dash followed by
|
|
|
|
a number, e.g. `logstash-2016.02.03-1` which is incremented every time the
|
|
|
|
index is rolled over. For instance:
|
2016-10-07 09:49:28 -04:00
|
|
|
|
2019-09-06 11:31:13 -04:00
|
|
|
[source,console]
|
2016-10-07 09:49:28 -04:00
|
|
|
--------------------------------------------------
|
2016-11-03 05:48:05 -04:00
|
|
|
# PUT /<logs-{now/d}-1> with URI encoding:
|
|
|
|
PUT /%3Clogs-%7Bnow%2Fd%7D-1%3E <1>
|
2016-10-07 09:49:28 -04:00
|
|
|
{
|
|
|
|
"aliases": {
|
|
|
|
"logs_write": {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 11:47:53 -05:00
|
|
|
PUT logs_write/_doc/1
|
2016-10-07 09:49:28 -04:00
|
|
|
{
|
|
|
|
"message": "a dummy log"
|
|
|
|
}
|
|
|
|
|
2016-12-23 09:44:56 -05:00
|
|
|
POST logs_write/_refresh
|
|
|
|
|
2016-10-07 09:49:28 -04:00
|
|
|
# Wait for a day to pass
|
|
|
|
|
|
|
|
POST /logs_write/_rollover <2>
|
|
|
|
{
|
|
|
|
"conditions": {
|
|
|
|
"max_docs": "1"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2020-03-20 09:04:33 -04:00
|
|
|
// TEST[s/now/2016.10.31%7C%7C/]
|
2019-09-06 11:31:13 -04:00
|
|
|
|
2016-10-07 09:49:28 -04:00
|
|
|
<1> Creates an index named with today's date (e.g.) `logs-2016.10.31-1`
|
|
|
|
<2> Rolls over to a new index with today's date, e.g. `logs-2016.10.31-000002` if run immediately, or `logs-2016.11.01-000002` if run after 24 hours
|
|
|
|
|
|
|
|
//////////////////////////
|
|
|
|
|
2019-09-06 11:31:13 -04:00
|
|
|
[source,console]
|
2016-10-07 09:49:28 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
GET _alias
|
|
|
|
--------------------------------------------------
|
|
|
|
// TEST[continued]
|
|
|
|
|
2019-09-06 09:22:08 -04:00
|
|
|
[source,console-result]
|
2016-10-07 09:49:28 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"logs-2016.10.31-000002": {
|
|
|
|
"aliases": {
|
|
|
|
"logs_write": {}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"logs-2016.10.31-1": {
|
|
|
|
"aliases": {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
//////////////////////////
|
|
|
|
|
|
|
|
These indices can then be referenced as described in the
|
|
|
|
<<date-math-index-names,date math documentation>>. For example, to search
|
|
|
|
over indices created in the last three days, you could do the following:
|
|
|
|
|
2019-09-06 11:31:13 -04:00
|
|
|
[source,console]
|
2016-10-07 09:49:28 -04:00
|
|
|
--------------------------------------------------
|
2016-11-10 06:23:19 -05:00
|
|
|
# GET /<logs-{now/d}-*>,<logs-{now/d-1d}-*>,<logs-{now/d-2d}-*>/_search
|
|
|
|
GET /%3Clogs-%7Bnow%2Fd%7D-*%3E%2C%3Clogs-%7Bnow%2Fd-1d%7D-*%3E%2C%3Clogs-%7Bnow%2Fd-2d%7D-*%3E/_search
|
2016-10-07 09:49:28 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
// TEST[continued]
|
2020-03-20 09:04:33 -04:00
|
|
|
// TEST[s/now/2016.10.31%7C%7C/]
|
2016-10-07 09:49:28 -04:00
|
|
|
|
2016-06-15 14:57:17 -04:00
|
|
|
|
2019-09-23 09:18:01 -04:00
|
|
|
[[rollover-index-api-dry-run-ex]]
|
|
|
|
===== Dry run
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2016-06-15 14:57:17 -04:00
|
|
|
The rollover API supports `dry_run` mode, where request conditions can be
|
2019-09-23 09:18:01 -04:00
|
|
|
checked without performing the actual rollover.
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2019-09-06 11:31:13 -04:00
|
|
|
[source,console]
|
2016-06-08 18:32:22 -04:00
|
|
|
--------------------------------------------------
|
2016-09-01 17:08:18 -04:00
|
|
|
POST /logs_write/_rollover?dry_run
|
2016-06-08 18:32:22 -04:00
|
|
|
{
|
2016-06-15 14:57:17 -04:00
|
|
|
"conditions" : {
|
|
|
|
"max_age": "7d",
|
2017-11-04 19:51:48 -04:00
|
|
|
"max_docs": 1000,
|
|
|
|
"max_size": "5gb"
|
2016-06-15 14:57:17 -04:00
|
|
|
}
|
2016-06-08 18:32:22 -04:00
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2019-09-23 09:18:01 -04:00
|
|
|
// TEST[s/^/PUT logs-000001\nPUT logs-000001\/_alias\/logs_write\n/]
|
2016-06-08 18:32:22 -04:00
|
|
|
|
2018-07-30 17:32:55 -04:00
|
|
|
|
|
|
|
[[indices-rollover-is-write-index]]
|
2019-09-23 09:18:01 -04:00
|
|
|
===== Roll over a write index
|
2018-07-30 17:32:55 -04:00
|
|
|
|
2020-06-09 07:57:16 -04:00
|
|
|
If the rollover target is an index alias for a write index that has `is_write_index` explicitly set to `true`, it is not
|
2018-07-30 17:32:55 -04:00
|
|
|
swapped during rollover actions. Since having an alias point to multiple indices is ambiguous in distinguishing
|
|
|
|
which is the correct write index to roll over, it is not valid to rollover an alias that points to multiple indices.
|
|
|
|
For this reason, the default behavior is to swap which index is being pointed to by the write-oriented alias. This
|
|
|
|
was `logs_write` in some of the above examples. Since setting `is_write_index` enables an alias to point to multiple indices
|
|
|
|
while also being explicit as to which is the write index that rollover should target, removing the alias from the rolled over
|
|
|
|
index is not necessary. This simplifies things by allowing for one alias to behave both as the write and read aliases for
|
|
|
|
indices that are being managed with Rollover.
|
|
|
|
|
|
|
|
Look at the behavior of the aliases in the following example where `is_write_index` is set on the rolled over index.
|
|
|
|
|
2019-09-06 11:31:13 -04:00
|
|
|
[source,console]
|
2018-07-30 17:32:55 -04:00
|
|
|
--------------------------------------------------
|
2019-01-18 03:34:11 -05:00
|
|
|
PUT my_logs_index-000001
|
2018-07-30 17:32:55 -04:00
|
|
|
{
|
|
|
|
"aliases": {
|
|
|
|
"logs": { "is_write_index": true } <1>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PUT logs/_doc/1
|
|
|
|
{
|
|
|
|
"message": "a dummy log"
|
|
|
|
}
|
|
|
|
|
|
|
|
POST logs/_refresh
|
|
|
|
|
|
|
|
POST /logs/_rollover
|
|
|
|
{
|
|
|
|
"conditions": {
|
|
|
|
"max_docs": "1"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PUT logs/_doc/2 <2>
|
|
|
|
{
|
|
|
|
"message": "a newer log"
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2019-09-06 11:31:13 -04:00
|
|
|
|
2018-07-30 17:32:55 -04:00
|
|
|
<1> configures `my_logs_index` as the write index for the `logs` alias
|
|
|
|
<2> newly indexed documents against the `logs` alias will write to the new index
|
|
|
|
|
2019-09-06 09:22:08 -04:00
|
|
|
[source,console-result]
|
2018-07-30 17:32:55 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"_index" : "my_logs_index-000002",
|
|
|
|
"_type" : "_doc",
|
|
|
|
"_id" : "2",
|
|
|
|
"_version" : 1,
|
|
|
|
"result" : "created",
|
|
|
|
"_shards" : {
|
|
|
|
"total" : 2,
|
|
|
|
"successful" : 1,
|
|
|
|
"failed" : 0
|
|
|
|
},
|
|
|
|
"_seq_no" : 0,
|
|
|
|
"_primary_term" : 1
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
//////////////////////////
|
2019-09-06 11:31:13 -04:00
|
|
|
[source,console]
|
2018-07-30 17:32:55 -04:00
|
|
|
--------------------------------------------------
|
[7.x] Add ILM histore store index (#50287) (#50345)
* Add ILM histore store index (#50287)
* Add ILM histore store index
This commit adds an ILM history store that tracks the lifecycle
execution state as an index progresses through its ILM policy. ILM
history documents store output similar to what the ILM explain API
returns.
An example document with ALL fields (not all documents will have all
fields) would look like:
```json
{
"@timestamp": 1203012389,
"policy": "my-ilm-policy",
"index": "index-2019.1.1-000023",
"index_age":123120,
"success": true,
"state": {
"phase": "warm",
"action": "allocate",
"step": "ERROR",
"failed_step": "update-settings",
"is_auto-retryable_error": true,
"creation_date": 12389012039,
"phase_time": 12908389120,
"action_time": 1283901209,
"step_time": 123904107140,
"phase_definition": "{\"policy\":\"ilm-history-ilm-policy\",\"phase_definition\":{\"min_age\":\"0ms\",\"actions\":{\"rollover\":{\"max_size\":\"50gb\",\"max_age\":\"30d\"}}},\"version\":1,\"modified_date_in_millis\":1576517253463}",
"step_info": "{... etc step info here as json ...}"
},
"error_details": "java.lang.RuntimeException: etc\n\tcaused by:etc etc etc full stacktrace"
}
```
These documents go into the `ilm-history-1-00000N` index to provide an
audit trail of the operations ILM has performed.
This history storage is enabled by default but can be disabled by setting
`index.lifecycle.history_index_enabled` to `false.`
Resolves #49180
* Make ILMHistoryStore.putAsync truly async (#50403)
This moves the `putAsync` method in `ILMHistoryStore` never to block.
Previously due to the way that the `BulkProcessor` works, it was possible
for `BulkProcessor#add` to block executing a bulk request. This was bad
as we may be adding things to the history store in cluster state update
threads.
This also moves the index creation to be done prior to the bulk request
execution, rather than being checked every time an operation was added
to the queue. This lessens the chance of the index being created, then
deleted (by some external force), and then recreated via a bulk indexing
request.
Resolves #50353
2019-12-20 14:33:36 -05:00
|
|
|
GET my_logs_index-000001,my_logs_index-000002/_alias
|
2018-07-30 17:32:55 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
// TEST[continued]
|
|
|
|
//////////////////////////
|
|
|
|
|
|
|
|
After the rollover, the alias metadata for the two indices will have the `is_write_index` setting
|
|
|
|
reflect each index's role, with the newly created index as the write index.
|
|
|
|
|
2019-09-06 09:22:08 -04:00
|
|
|
[source,console-result]
|
2018-07-30 17:32:55 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"my_logs_index-000002": {
|
|
|
|
"aliases": {
|
|
|
|
"logs": { "is_write_index": true }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"my_logs_index-000001": {
|
|
|
|
"aliases": {
|
|
|
|
"logs": { "is_write_index" : false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|