I'm using Elasticsearch 6.8.3
The reason I discovered this is because curator calls GET _snapshot/_status
before it starts doing snapshots, and it is failing with a 404 response.
I've confirmed that the response to that call is indeed:
{
"error": {
"root_cause": [
{
"type": "repository_missing_exception",
"reason": "[_all] missing"
}
],
"type": "repository_missing_exception",
"reason": "[_all] missing"
},
"status": 404
}
But.... this is really strange because I can successfully backup and restore snapshots in my repository. I've tried re-creating it with no help.
The repository settings are:
{
"dev-es6-backup-repository": {
"type": "fs",
"settings": {
"location": "\\\\sanitizedserver\\elasticsearch_backup_repos\\dev-es6-backup-repository"
}
}
}