2018-10-16 15:18:54 -04:00
|
|
|
[role="xpack"]
|
|
|
|
[testenv="basic"]
|
|
|
|
[[ilm-explain]]
|
|
|
|
=== Explain Lifecycle API
|
|
|
|
++++
|
|
|
|
<titleabbrev>Explain Lifecycle</titleabbrev>
|
|
|
|
++++
|
|
|
|
|
|
|
|
Shows the current lifecycle status for an index.
|
|
|
|
|
|
|
|
==== Request
|
|
|
|
|
|
|
|
`GET <index>/_ilm/explain`
|
|
|
|
|
|
|
|
==== Description
|
|
|
|
|
|
|
|
This API returns information relating to the current lifecycle state of an
|
|
|
|
index. This includes information such as the currently executing phase, action,
|
|
|
|
and step and the timestamp when the index entered them. It also shows the
|
|
|
|
definition of the current phase that is being run and in the event that there
|
|
|
|
has been a failure, information regarding the failure.
|
|
|
|
|
|
|
|
==== Path Parameters
|
|
|
|
|
|
|
|
`index` (required)::
|
|
|
|
(string) Identifier for the index.
|
|
|
|
|
|
|
|
==== Request Parameters
|
|
|
|
|
|
|
|
`timeout`::
|
|
|
|
(time units) Specifies the period of time to wait for the completion of the
|
|
|
|
GET operation. When this period of time elapses, the API fails and returns
|
|
|
|
an error. The default value is `30s`. For more information about time units,
|
|
|
|
see <<time-units>>.
|
|
|
|
|
|
|
|
`master_timeout`::
|
|
|
|
(time units) Specifies the period of time to wait for the connection with master.
|
|
|
|
When this period of time elapses, the API fails and returns an error.
|
|
|
|
The default value is `30s`. For more information about time units, see <<time-units>>.
|
|
|
|
|
|
|
|
|
|
|
|
==== Examples
|
|
|
|
|
|
|
|
The following example retrieves the lifecycle state for the index `my_index`:
|
|
|
|
|
|
|
|
//////////////////////////
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2018-10-30 19:19:05 -04:00
|
|
|
PUT _ilm/policy/my_policy
|
2018-10-16 15:18:54 -04:00
|
|
|
{
|
|
|
|
"policy": {
|
|
|
|
"phases": {
|
|
|
|
"warm": {
|
2018-10-30 15:54:02 -04:00
|
|
|
"min_age": "10d",
|
2018-10-16 15:18:54 -04:00
|
|
|
"actions": {
|
|
|
|
"forcemerge": {
|
|
|
|
"max_num_segments": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"delete": {
|
2018-10-30 15:54:02 -04:00
|
|
|
"min_age": "30d",
|
2018-10-16 15:18:54 -04:00
|
|
|
"actions": {
|
|
|
|
"delete": {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PUT my_index
|
|
|
|
{
|
|
|
|
"settings": {
|
|
|
|
"index.lifecycle.name": "my_policy",
|
|
|
|
"index.number_of_replicas": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GET /_cluster/health?wait_for_status=green&timeout=10s
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TEST
|
|
|
|
|
|
|
|
//////////////////////////
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
GET my_index/_ilm/explain
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TEST[continued]
|
|
|
|
|
|
|
|
When the index is first taken over by ILM you will see a response like the following:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"indices": {
|
|
|
|
"my_index": {
|
|
|
|
"index": "my_index",
|
|
|
|
"managed": true, <1>
|
|
|
|
"policy": "my_policy", <2>
|
2018-10-25 10:27:04 -04:00
|
|
|
"lifecycle_date": 1538475653281, <3>
|
|
|
|
"phase": "new", <4>
|
|
|
|
"phase_time": 1538475653317, <5>
|
|
|
|
"action": "complete", <6>
|
|
|
|
"action_time": 1538475653317, <7>
|
|
|
|
"step": "complete", <8>
|
|
|
|
"step_time": 1538475653317 <9>
|
2018-10-16 15:18:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TESTRESPONSE[s/"lifecycle_date": 1538475653281/"lifecycle_date": $body.indices.my_index.lifecycle_date/]
|
2018-10-23 17:20:41 -04:00
|
|
|
// TESTRESPONSE[s/"phase_time": 1538475653317/"phase_time": $body.indices.my_index.phase_time/]
|
2018-10-16 15:18:54 -04:00
|
|
|
// TESTRESPONSE[s/"action_time": 1538475653317/"action_time": $body.indices.my_index.action_time/]
|
|
|
|
// TESTRESPONSE[s/"step_time": 1538475653317/"step_time": $body.indices.my_index.step_time/]
|
|
|
|
<1> Shows if the index is being managed by ILM. If the index is not managed by
|
|
|
|
ILM the other fields will not be shown
|
|
|
|
<2> The name of the policy which ILM is using for this index
|
2018-10-30 15:54:02 -04:00
|
|
|
<3> The timestamp used for the `min_age`
|
2018-10-25 10:27:04 -04:00
|
|
|
<4> The current phase
|
|
|
|
<5> The timestamp for when the index entered the current phase
|
|
|
|
<6> The current action
|
|
|
|
<7> The timestamp for when the index entered the current action
|
|
|
|
<8> The current step
|
|
|
|
<9> The timestamp for when the index entered the current step
|
2018-10-16 15:18:54 -04:00
|
|
|
|
|
|
|
When the policy is running on the index the response will contain a
|
|
|
|
`phase_execution` object that describes the exact phase that is being run.
|
|
|
|
Changes to the underlying policy will not affect this index until the current
|
|
|
|
phase definition has been completely executed.
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"indices": {
|
|
|
|
"test-000069": {
|
|
|
|
"index": "test-000069",
|
|
|
|
"managed": true,
|
|
|
|
"policy": "my_lifecycle3",
|
|
|
|
"lifecycle_date": "2018-10-15T13:45:21.981Z",
|
|
|
|
"phase": "hot",
|
|
|
|
"phase_time": "2018-10-15T13:45:22.577Z",
|
|
|
|
"action": "rollover",
|
|
|
|
"action_time": "2018-10-15T13:45:22.577Z",
|
|
|
|
"step": "attempt_rollover",
|
|
|
|
"step_time": "2018-10-15T13:45:22.577Z",
|
|
|
|
"phase_execution": { <1>
|
|
|
|
"policy": "my_lifecycle3", <2>
|
|
|
|
"phase_definition": { <3>
|
2018-10-30 15:54:02 -04:00
|
|
|
"min_age": "0ms",
|
2018-10-16 15:18:54 -04:00
|
|
|
"actions": {
|
|
|
|
"rollover": {
|
|
|
|
"max_age": "30s"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"version": 3, <4>
|
|
|
|
"modified_date": "2018-10-15T13:21:41.576Z", <5>
|
|
|
|
"modified_date_in_millis": 1539609701576 <6>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TESTRESPONSE[skip:not possible to get the cluster into this state in a docs test]
|
|
|
|
<1> The phase execution information for this index in its current phase
|
|
|
|
<2> The policy that this phase definition was loaded from
|
|
|
|
<3> The phase definition itself. This is the JSON for the phase loaded from the
|
|
|
|
policy at the time the index entered the current phase
|
|
|
|
<4> The version of the policy at the time the phase definition was loaded
|
|
|
|
<5> The last modified date of the policy at the time the phase definition was loaded
|
|
|
|
<6> The last modified epoch time of the policy at the time the phase definition was loaded
|
|
|
|
|
|
|
|
|
|
|
|
If the policy is waiting for a step to complete for the index, the response will contain step information such as:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"indices": {
|
|
|
|
"test-000020": {
|
|
|
|
"index": "test-000020",
|
|
|
|
"managed": true,
|
|
|
|
"policy": "my_lifecycle3",
|
|
|
|
"lifecycle_date": "2018-10-15T13:20:28.042Z",
|
|
|
|
"phase": "warm",
|
|
|
|
"phase_time": "2018-10-15T13:20:28.428Z",
|
|
|
|
"action": "allocate",
|
|
|
|
"action_time": "2018-10-15T13:20:28.428Z",
|
|
|
|
"step": "check-allocation",
|
|
|
|
"step_time": "2018-10-15T13:20:28.633Z",
|
|
|
|
"step_info": { <1>
|
|
|
|
"message": "Waiting for all shard copies to be active",
|
|
|
|
"shards_left_to_allocate": -1,
|
|
|
|
"all_shards_active": false,
|
|
|
|
"actual_replicas": 2
|
|
|
|
},
|
|
|
|
"phase_execution": {
|
|
|
|
"policy": "my_lifecycle3",
|
|
|
|
"phase_definition": {
|
2018-10-30 15:54:02 -04:00
|
|
|
"min_age": "0ms",
|
2018-10-16 15:18:54 -04:00
|
|
|
"actions": {
|
|
|
|
"allocate": {
|
|
|
|
"number_of_replicas": 2,
|
|
|
|
"include": {
|
|
|
|
"box_type": "warm"
|
|
|
|
},
|
|
|
|
"exclude": {},
|
|
|
|
"require": {}
|
|
|
|
},
|
|
|
|
"forcemerge": {
|
|
|
|
"max_num_segments": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"version": 2,
|
|
|
|
"modified_date": "2018-10-15T13:20:02.489Z",
|
|
|
|
"modified_date_in_millis": 1539609602489
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TESTRESPONSE[skip:not possible to get the cluster into this state in a docs test]
|
|
|
|
<1> `step_info` shows information about what ILM is waiting for on this index.
|
|
|
|
In this case we are waiting for all shard copies of the index to be active.
|
|
|
|
|
|
|
|
If the index is in the ERROR step, something has gone wrong when executing a
|
|
|
|
step in the policy and will need to be investigated and resolved for the index
|
|
|
|
to make progress. TO help determine how to resolve the error the explain response
|
|
|
|
will show the step that failed in `failed_step`, and the information on the error
|
|
|
|
that occurred in `step_info`.
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"indices": {
|
|
|
|
"test-000056": {
|
|
|
|
"index": "test-000056",
|
|
|
|
"managed": true,
|
|
|
|
"policy": "my_lifecycle3",
|
|
|
|
"lifecycle_date": "2018-10-15T13:38:26.209Z",
|
|
|
|
"phase": "hot",
|
|
|
|
"phase_time": "2018-10-15T13:38:26.706Z",
|
|
|
|
"action": "rollover",
|
|
|
|
"action_time": "2018-10-15T13:38:26.706Z",
|
|
|
|
"step": "ERROR",
|
|
|
|
"step_time": "2018-10-15T13:39:15.304Z",
|
|
|
|
"failed_step": "attempt_rollover", <1>
|
|
|
|
"step_info": { <2>
|
|
|
|
"type": "resource_already_exists_exception",
|
|
|
|
"reason": "index [test-000057/H7lF9n36Rzqa-KfKcnGQMg] already exists",
|
|
|
|
"index_uuid": "H7lF9n36Rzqa-KfKcnGQMg",
|
|
|
|
"index": "test-000057"
|
|
|
|
},
|
|
|
|
"phase_execution": {
|
|
|
|
"policy": "my_lifecycle3",
|
|
|
|
"phase_definition": {
|
2018-10-30 15:54:02 -04:00
|
|
|
"min_age": "0ms",
|
2018-10-16 15:18:54 -04:00
|
|
|
"actions": {
|
|
|
|
"rollover": {
|
|
|
|
"max_age": "30s"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"version": 3,
|
|
|
|
"modified_date": "2018-10-15T13:21:41.576Z",
|
|
|
|
"modified_date_in_millis": 1539609701576
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TESTRESPONSE[skip:not possible to get the cluster into this state in a docs test]
|
|
|
|
<1> The step that caused an error
|
|
|
|
<2> Information on the error that occurred. In this case the next index already
|
|
|
|
existed when the rollover operation was performed
|