1. rclone vs. rsync – speed, parallelism, and feature gaps
Users repeatedly compare the two tools, noting rclone’s built‑in multi‑threading and cloud‑native support versus rsync’s single‑stream design and delta algorithm.
“The parallelism advantage of rclone is real but undersold here.” – cranberryturkey
“Rclone is a fantastic tool, but my favorite part of it is actually the underlying FS library.” – ericpauley
“Rsync is a fantastic tool, but my favorite part of it is actually the underlying FS library.” – rsync
2. Cloud provider rate limits and rclone’s handling of them
Many commenters complain that rclone’s exponential back‑off and lack of retry‑after support make migrations painfully slow.
“The exponential back off will end up making hours and days long delays that will screw a migration.” – plasticsoprano
“It doesn't honor dropbox's retry‑after header.” – darthShadow
3. TCP/SSH bottlenecks and the value of multi‑streaming
The discussion turns to the hard‑coded 2 MiB SSH window, BBR tuning, and why opening several streams can beat a single connection on high‑bandwidth links.
“rsync and
cat | ssh | catonly use a single channel, so if their counterparty is an OpenSSH sshd server, their throughput is limited by the 2 MiB window limit.” – nh2
“Using multiple streams is just less of a hassle for client users.” – digiown
4. Community maintenance, sponsorship, and tooling ecosystem
A thread of comments highlights the need for funding, better documentation, and complementary tools (fpart, xargs, tar pipes).
“I hope that you sponsor the rclone project… I couldn’t find any indication online that you do give back to the project.” – noname120
“You can also run multiple instances of rsync, the problem seems how to efficiently divide the set of files.” – cachius
These four themes capture the bulk of the discussion: performance trade‑offs between rclone and rsync, handling of cloud limits, underlying transport constraints, and the open‑source community’s role in sustaining the tools.