I have a huge amount of files I am transferring using rsync. I use it as a backup to transfer from my primary system to an NFS file system that is mounted. This is a great solution, however, it is very slow. It takes hours to complete it seems (I never timed it).
Here is my rsync call:
rsync -zvr --delete /var/www/site/public_html/pics/ /mount/backup/pics/
These are user profile pictures and since I have well over 100,000 users, I have a lot of profile pictures to transfer. They all reside in a single directly. These files are around 1-15kb.
What can I do to speed this up?
Void
It should operate with much less resource usage although it may still take a bit on a large amount of files.
You can also explode it to where you want to save it:
Are you sure you want to delete this post?