You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A number of my backups have been done with a dodgy Internet connection as of late. This means that long-running backups will sometimes fail due to the remote "hanging up". As of the commit listed above, backups that end when rsync reports an error are treated as successful.
This means rather than continuing a previously in-progress backup, rsync-tmbackup.sh will think that an incomplete backup is in fact the latest backup and use that as the rsync--link-dest. Because link-dest was a failed, incomplete backup, this results in a large number of files being transferred redundantly to the destination that would otherwise be replaced with a hard-link to the last time these files were changed.
I would prefer that an incomplete backup still be considered .inprogress. Subsequent attempts to do a backup will use less bandwidth as more and more files are considered to match. Eventually, my rsync backups will be completed even over a dodgy connection, while still having the space savings on an incremental backup :).
The text was updated successfully, but these errors were encountered:
d152279
A number of my backups have been done with a dodgy Internet connection as of late. This means that long-running backups will sometimes fail due to the remote "hanging up". As of the commit listed above, backups that end when rsync reports an error are treated as successful.
This means rather than continuing a previously in-progress backup,
rsync-tmbackup.sh
will think that an incomplete backup is in fact the latest backup and use that as thersync
--link-dest
. Becauselink-dest
was a failed, incomplete backup, this results in a large number of files being transferred redundantly to the destination that would otherwise be replaced with a hard-link to the last time these files were changed.I would prefer that an incomplete backup still be considered
.inprogress
. Subsequent attempts to do a backup will use less bandwidth as more and more files are considered to match. Eventually, myrsync
backups will be completed even over a dodgy connection, while still having the space savings on an incremental backup :).The text was updated successfully, but these errors were encountered: