Has anyone else had any issues deleting snapshots after upgrading? I upgraded from 7.5.1 -> 7.9.0
, and now REST calls to DELETE /snapshot/repo-name/snapshot-name
take exactly 3 minutes to return. If I call GET /snapshot/repo-name/_all
a few seconds after the DELETE call, snapshot-name is already gone. I'm using the S3 repos.
Tangentially, I noticed the new setting "snapshot.max_concurrent_operations": 1000
when I hit GET /_cluster/settings?include_defaults=true&pretty
. However, I am still getting this error when I try to take a snapshot while a delete is in-progress:
[HTTP/1.1 503 Service Unavailable]
{
"error": {
"root_cause": [
{
"type": "concurrent_snapshot_execution_exception",
"reason": "[my-repo:my-snapshot] cannot snapshot while a snapshot deletion is in-progress in [SnapshotDeletionsInProgress[[other-repo:other-snapshot/ITFOKPFrRnGSlyurFkMY0g]]]"
}
],
"type": "concurrent_snapshot_execution_exception",
"reason": "[my-repo:my-snapshot] cannot snapshot while a snapshot deletion is in-progress in [SnapshotDeletionsInProgress[[other-repo:other-snapshot/ITFOKPFrRnGSlyurFkMY0g]]]"
},
"status": 503
}