Hi there!
I configured both s3 repository in AWS, made a backup there, and it worked.
But now, I want to test the restore action with Curator.
I created new instance, installed ES, S3 plugin, curator, configured it to work, everything seems OK.
Now, I wanted to restore the data, from S3, to this instance, and when running curator command, I'm getting this error - "2018-12-11 11:34:09,583 ERROR Failed to complete action: restore. <class 'curator.exceptions.FailedExecution'>: Unable to get snapshot information from repository: elasticsearch_xxxx. Error: TransportError(500, u'repository_exception', u'[elasticsearch_xxxx] cannot create blob store')"
This is how my action file looks
actions:
1:
action: restore
description: >-
Restore all indices in the most recent snapshot with state SUCCESS. Wait
for the restore to complete before continuing. Do not skip the repository
filesystem access check. Use the other options to define the index/shard
settings for the restore.
options:
repository: elasticsearch_xxxx
# 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: 3600
wait_interval: 10
filters:
- filtertype: state
state: SUCCESS
exclude:
What could be the problem ? (once again, the backup works).
Thanks,
Aleksei