Did "vanished file" affect other file transfers? #485
|
Hello WayneD and team! |
Replies: 2 comments
|
I have deleted a few source files while a transfer was in progress. Thus if you didn't add any new files in the meantime that should be transfered, you can ignore it. Rsync collects a list of files to be transfered at start time, then starts the transmission. |
|
Pretty much entirely correct. Par the fact that rsync normally uses incremental recursion nowadays. But repeating from Michael. Exit code 24 does not stop the remaining files from being transferred. It means one or more source files disappeared after rsync discovered them but before it could transfer them so those files are missing from the destination. Whether you should retry depends on what you are copying. For a live tree where temporary files are regularly created and removed, inspect the reported paths and ignore the warning if those files do not matter. If you need a complete and consistent backup, rerun the transfer and consider taking a snapshot or otherwise preventing the source from changing during the run. |
Pretty much entirely correct. Par the fact that rsync normally uses incremental recursion nowadays. But repeating from Michael.
Exit code 24 does not stop the remaining files from being transferred. It means one or more source files disappeared after rsync discovered them but before it could transfer them so those files are missing from the destination.
Whether you should retry depends on what you are copying. For a live tree where temporary files are regularly created and removed, inspect the reported paths and ignore the warning if those files do not matter. If you need a complete and consistent backup, rerun the transfer and consider taking a snapshot or otherwise preventing the source…