restic 0.15.1 compiled with go1.20.2 on freebsd/amd64
running on a TrueNAS jail (FreeBSD)
I have setup restic-env and restic-password with my Backblaze B2 credentials and I want to restore/move all the files from a bucket before I delete it.
I run:
restic restore --target /test latest
on /mnt/backblaze and a folder was created in /mnt/backblaze/test with the files from the bucket.
The problem is that the data was larger than the default data cap that was in place so the restore stopped/hanged.
First, I run ps aux and it seems like there a process named restic restore
that still exists.
I tried increasing the cap to the point where it would have more than enough download bandwidth to download the whole bucket but it didn’t seem to fix it.
Additionally, I run find /mnt/backblaze/test -type f|wc -l
a few times after this to see that the number of files did not change (I would expect this to start increasing once increasing the download cap)
Finally, what is the best way for me to resume this restore? Preferably without having to re-download the data I have already waited (and paid) to download.
Thanks in advance.
With your restic
version you will re-download everything.
Use the latest restic
release and read about in-place restore.