I have added a Snapshot Repository via CIFS. Both systems in the clusters can see it and write to it. However in my Snapshot status I get the following:
logstash-2020.11.17 IN_PROGRESS 2020-11-18 15:57:58 - 1969-12-31 18:00:00 1.7.6
It doesn't appear the system is processing snapshots correctly can you please help?
Thanks.
Snapshots Say In Progress Only
Re: Snapshots Say In Progress Only
Run the following to get a list of snapshots and their status:
*Make sure you replace REPONAME with the actual repository name.
Once you've identified the hanging snapshot, you can remove it with:
*Replace REPONAME and curator-20201117094956 with the proper repository name and snapshot name.
Code: Select all
curl -XGET 'http://localhost:9200/_snapshot/REPONAME/_all?pretty'Once you've identified the hanging snapshot, you can remove it with:
Code: Select all
curl -XDELETE 'http://localhost:9200/_snapshot/REpONAME/curator-20201117094956'As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Re: Snapshots Say In Progress Only
When I try to run a delete it says: {"error":"ConcurrentSnapshotExecutionException[[FreeNAS:curator-20190601180154] another snapshot is currently running cannot delete]","status":503}[
Should I keep trying to utilize this Repo or create another one?
Should I keep trying to utilize this Repo or create another one?
Re: Snapshots Say In Progress Only
You should be able to continue using this one. Can you share the output of the -XGET command? Is there a job stuck in a running status? It's likely an old one that can also be deleted. Feel free to send me the output of the XGET in a private message if you can't share it here.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Re: Snapshots Say In Progress Only
It looks like there are multiple jobs that are stuck. Remove them with:
Code: Select all
curl -XDELETE 'http://localhost:9200/_snapshot/FreeNAS/curator-20201118215757'
curl -XDELETE 'http://localhost:9200/_snapshot/FreeNAS/curator-20200227144716'
curl -XDELETE 'http://localhost:9200/_snapshot/FreeNAS/curator-20191106170843'
curl -XDELETE 'http://localhost:9200/_snapshot/FreeNAS/curator-20190625162917'
curl -XDELETE 'http://localhost:9200/_snapshot/FreeNAS/curator-20190908154733'As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.