How to repeatedly call rsync until files are sucessfully transferred

43,608

Solution 1

If you are syncing everything in one sync, call rsync in a loop until rsync gives you a successful return code.

Something like:

RC=1 
while [[ $RC -ne 0 ]]
do
   rsync -a .....   
   RC=$?
done

This will loop, calling rsync, until it gives a return code of 0. You may want to add a sleep in there to keep from DOSing your server.

Solution 2

I ran into this same problem a while back. In the end I wrote something similar to David's answer, but gussied it up a little with max retries, responding to Ctrl-C, and such: http://blog.iangreenleaf.com/2009/03/rsync-and-retrying-until-we-get-it.html.

The obvious solution is to check the return value, and if rsync returns anything but success, run it again. Here was my first try:

while [ $? -ne 0 ]; do rsync -avz --progress --partial /rsync/source/folder [email protected]:/rsync/destination/folder; done

The problem with this is that if you want to halt the program, Ctrl-C only stops the current rsync process, and the loop helpfully starts another one immediately. Even worse, my connection kept breaking so hard that rsync would quit with the same "unkown" error code on connection problems as it did on a SIGINT, so I couldn't have my loop differentiate and break when needed. Here is my final script:

#!/bin/bash

### ABOUT
### Runs rsync, retrying on errors up to a maximum number of tries.
### Simply edit the rsync line in the script to whatever parameters you need.

# Trap interrupts and exit instead of continuing the loop
trap "echo Exited!; exit;" SIGINT SIGTERM

MAX_RETRIES=50
i=0

# Set the initial return value to failure
false

while [ $? -ne 0 -a $i -lt $MAX_RETRIES ]
do
 i=$(($i+1))
 rsync -avz --progress --partial /rsync/source/folder [email protected]:/rsync/destination/folder
done

if [ $i -eq $MAX_RETRIES ]
then
  echo "Hit maximum number of retries, giving up."
fi

Solution 3

purtting it all together with sshpass

while ! sshpass -p 'xxxx' rsync --partial --append-verify --progress -a -e 'ssh -p 22' /source/ [email protected]:/dest/; do sleep 5;done
Share:
43,608

Related videos on Youtube

Bruno Lopes
Author by

Bruno Lopes

Pythonista, c#er, tinkerer.

Updated on September 17, 2022

Comments

  • Bruno Lopes
    Bruno Lopes over 1 year

    I'm trying to syncronize files from a remote server that is not reliable, meaning the connection tends to fail "randomly" with

    rsync: connection unexpectedly closed

    Rsync is called with --partial, so I'd like to be able to call rsync in a loop until files are fully transfered. There doesn't seem to be a flag to tell rsync to retry.

    What would be the best way to script it? A bash for loop?

    • MarkR
      MarkR over 14 years
      While the answers below are helpful, it might be a better idea to find out why it's failing and make it stop. I assume you control the server, the client and the network in between, so you can run tcpdump at various places to see how it was closed. Perhaps one of your firewall or VPN devices is closing the connection?
    • Bruno Lopes
      Bruno Lopes over 14 years
      The server it's connecting to is a shared host, so I don't have root access to it. I might look into why it is closing, but for now I'm more than happy to just have it retry. Thanks anyway for the heads up
    • rickfoosusa
      rickfoosusa over 8 years
      rsync --partial --append does have the ability to retry, manually, or in a script checking the return code. Duplicate of: superuser.com/questions/302842/…
  • Justin
    Justin over 14 years
    you can just write while ! rsync -a .... ;do sleep 5;done
  • Bruno Lopes
    Bruno Lopes over 14 years
    I'm now using the format @Justin mentioned and it works like a charm :) Thanks!
  • Gordon Davisson
    Gordon Davisson over 14 years
    This'll turn into an infinite loop if there's a non-transitent error (e.g. a permissions error reading or writing files). I'd recommend checking rsync's exit status for specific network errors, something like RC=12; while [[ $RC -eq 12 || $RC -eq 30 ]] (or whatever exit statuses you're seeing from network drops).
  • Bruno Lopes
    Bruno Lopes over 14 years
    As I'm not running this (completely) unattended, infinite loops and concurrency are not much of an issue, thank you.
  • Michael
    Michael about 9 years
    It's a shame rsync doesn't have this feature built in, because any kind of shell based loop will prompt for a password in cases where automatic authentication isn't available or appropriate.