Hacker News new | ask | show | jobs
by thedaly 902 days ago
I've starting using rclone over rsync for this application. Rclone can do segmented transfers and handles large numbers of files better, at least in my experience.
2 comments

rclone is great! So useful as an alternative/superior client for cloud storage too (Google Drive, OneDrive, etc.)
What are segmented transfers?
Send multiple pieces of the file and reconstruct the file on the other end. It's more reliable to send smaller chunks and the transfer can be hash validated on individual chunks and after reconstruction. Multiple download streams typically performs better too (from single or multiple servers).

e.g. BitTorrent for the multiple servers case.