We have a number of servers using rsync 2.6.6 to send data to a remote location. We use the following cmd to execute the sync:
rsync -avzW --progress --stats --delete -e "ssh -i /root/rsync/rsync-key" /home/* xx@xxx.xxx.xxx.xxx:/home/1
/
When we have 10+ running at the same time load begins to get very high (11.49, 10.75, 9.12)
The local data we are syncing is static and is output in a time/date format, so rsync is possibly overkill for our needs, as we do not need the deltablock xfer.
I have heard that other methods of transfer can be used with rsync (RCP?) to reduce load.
Could anyone offer some advice as to how i might do this?
thanks in advance!
Start Free Trial