Issue with ILM rollover after updated elasticsearch output:
input_storage-alias is the name of index
I created policy name as input_storage_policy but from Index Management I am getting error message 'illegal_argument_exception:index.lifecycle.rollover_alias (index_storage-alias) does not point to index (index_storage-alias).
The summary of indices:
Aliases - none
Lifecycle policy - Input_storage_policy
Failed step - check-rollover-ready
from API:
POST /_aliases
{
"actions": [
{
"add": {
"index": "input_storage-000001",
"alias": "input_storage-alias",
"is_write_index": true
}
}
}
]
}
I am getting error message "type: invalid_alias_name_exception" / "reason: Invalid alias name (input_storage-alias), an index exists with the same name as the alias".
Please advise what I need to correct the rollover.
Thanks