You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading from v7.5 to v7.14.0, cannot restore snapshots using curator restore action due to the following error related to the index .kibana_security_session_1
2021-09-15 14:42:45,883 ERROR curator.actions.snapshot report_state:1949 Some of the indices do not appear to have been restored. Missing: ['.kibana_security_session_1']
2021-09-15 14:42:45,883 ERROR curator.cli run:213 Failed to complete action: restore. <class 'curator.exceptions.FailedExecution'>: Exception encountered. Rerun with loglevel DEBUG and/or check Elasticsearch logs for more information. Exception: Some of the indices do not appear to have been restored. Missing: ['.kibana_security_session_1']
actions:
1:
action: snapshot
description: "Snapshot prefixed indices as in 'filters' to 'repository' with the snapshot name pattern in 'name'"
options:
repository: cadm_snapshots_repository
# Leaving name blank will result in the default 'curator-%Y%m%d%H%M%S'
name: 'snapshot-%Y%m%d%H%M%S'
wait_for_completion: True
max_wait: -1
wait_interval: 9
ignore_empty_list: True
disable_action: False
filters:
- filtertype: pattern
kind: prefix
value: .*
actions:
1:
action: restore
description: "Restore a list of indices in the provided snapshot"
options:
repository: snapshots_repository
# If name is blank, the most recent snapshot by age will be selected
name: ''
# If indices is blank, all indices in the snapshot will be restored
indices:
wait_for_completion: True
max_wait: -1
wait_interval: 9
ignore_empty_list: True
disable_action: False
filters:
- filtertype: state
state: SUCCESS
After upgrading from v7.5 to v7.14.0, cannot restore snapshots using curator restore action due to the following error related to the index .kibana_security_session_1
Here is the sequence to reproduce the error:
Config file curator.yml
Create the snapshot:
curator_action_snapshot.yml
Capture the snapshot
Close all indices using _close API:
Restore the snapshot
curator_action_restore.yml
Run the snapshot restore
The text was updated successfully, but these errors were encountered: