By unresponsive, are you still able to delete files? If so, I’d hunt down any 0-byte chunk or snapshot files (find /storage -size 0 -type f -delete
) then run a check -all
. Manually delete any snapshots with missing chunks.
If you’re then able to run a prune -exclusive -exhaustive
, that may get rid of enough fossilised chunks already queued for deletion. Just don’t combine that with any -keep
flags - do that after.
Or what you could maybe do is download then delete a handful of old chunk files, hoping none were metadata and not cached locally on your client. After a prune -exclusive -exhaustive
, which hopefully frees up some space, you could manually upload those chunks you downloaded/deleted.
If you don’t care about snapshot history, or have another storage you can copy from, you can rebuild those missing chunks but you’d have to use a new ID, as incremental backups on an existing ID assumes all the chunks listed in the latest revision, is present.
I’ve run into lack of disk space issues numerous times over sftp, and usually a quick find /storage -size 0 -type f -delete
and prune -exclusive -exhaustive
gets everything in a good place.