Action timed out

Hello
I have several indices with Action timed out.
But when I executed explain I found that consumed_retries = 0. Does it mean that Action was tried only 1 time, or consumed_retries parameter means something different?
Here is the state of the index:


Here is output for _ism/explain:
{
“logging-time-2019.10.28” : {
“index.opendistro.index_state_management.policy_id” : “ingest_policy”,
“index” : “logging-time-2019.10.28”,
“index_uuid” : “Qy2JLOzJScG_xha1XowwFw”,
“policy_id” : “ingest_policy”,
“policy_seq_no” : 2613,
“policy_primary_term” : 56,
“transition_to” : “delete”,
“retry_info” : {
“failed” : false,
“consumed_retries” : 0
},
“info” : { “message” : “Action timed out” }
}
}

and here is the policy itself:
{
“policy_id”: “ingest_policy”,
“description”: “Default policy”,
“last_updated_time”: 1574536845562,
“schema_version”: 1,
“error_notification”: null,
“default_state”: “ingest”,
“states”: [
{
“name”: “ingest”,
“actions”: ,
“transitions”: [
{ “state_name”: “search”,
“conditions”: { “min_index_age”: “4d” }
}
]
},
{
“name”: “search”,
“actions”: [
{
“timeout”: “1h”,
“retry”: {
“count”: 3,
“backoff”: “constant”,
“delay”: “1h”
},
“force_merge”: { “max_num_segments”: 1 }
}
],
“transitions”: [
{
“state_name”: “delete”,
“conditions”: { “min_index_age”: “60d” }
}
]
},
{
“name”: “delete”,
“actions”: [
{
“timeout”: “1h”,
“retry”: {
“count”: 3,
“backoff”: “constant”,
“delay”: “1h”
},
“delete”: {}
}
],
“transitions”:
}
]
}

1 Like

Hi @andrii - were you able to get around this issue? If not - please file an issue at Issues · opendistro-for-elasticsearch/index-management · GitHub

@andrii is it fixed?