This repository was archived by the owner on Sep 3, 2021. It is now read-only.
Prevent multiple restic backups from running at once#4
Open
glimberg wants to merge 1 commit intocsumpter:masterfrom
Open
Prevent multiple restic backups from running at once#4glimberg wants to merge 1 commit intocsumpter:masterfrom
restic backups from running at once#4glimberg wants to merge 1 commit intocsumpter:masterfrom
Conversation
backup.sh wraps do_backup.sh via flock so that multiple `restic backup`s dont pile up on each other in cases where a backup can take longer than the period specified in cron
Owner
|
Hello glimberg, thank you for the code and thoughts. I read through the various conversations around the issue on if to lock or not, when doing some sort of scheduled backup process on the restic repository GitHub issues. It would seem like adding a locking mechanism for our intended use would be appropriate here. Did you consider adding the exec {lock_fd}>/var/lock/backup || exit 1
flock -n "$lock_fd" || { log "[ERROR] Backup lockfile is in place." >&2; exit 1; }
restic backup /data ${RESTIC_BACKUP_ARGS} --tag="${RESTIC_TAG}" | tee -a "$logFile"
rc=$?
if [[ $rc == 0 ]]; then
log "[INFO] Backup succeeded"
else
log "[ERROR] Backup failed with status ${rc}"
restic unlock
copyErrorLog
kill 1
fi
end=$(date +%s)
log "[INFO] Finished backup at $(date)"
showTime $((end-start))Alternatively, wrapping the main block in a flock with the appropriate options. I do not think adding an entirely separate file here is needed, let me know your thoughts. Thank you, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I'm doing an initial backup of ~2.5TB which is far more than my home bandwidth can upload offsite in a 24 hour period. I noticed on the 2nd day of running, cron had launched a second
restic backupprocess. Per comments in this issue thread in the Restic repo, restic/restic#519 (comment), it's not necessarily an issue to have multiple Restic backups of the same data going on at once, however it will waste some space.Rather than wasting space on B2 and using additional system resources on a resource constrained system, I made the following modifications:
do_backup.shis launched, and therefore only a singlerestic backupis launched as well.