2

I found an answer Here for a problem I was having regarding transfer speed. It says that the problem is rsync's delta copy was downloading files twice, once for checksum and once for actual transfer. The solution provided (DeltaCopy server) worked, but I'm not certain the reasoning was sound.

The man page for rsync, the -W option says that it is enabled by default for a local to local copy. It also says that a Whole File transfer disables the delta transfer.

a: is a transfer between a local directory and a mounted share counted as a local or a remote transfer?

b: if it is counted as a local transfer, why was I getting 2 MB/s speeds between local/mounted share and then 10 MB/s speeds when I started using a DeltaCopy server?

Daniel B.
  • 725
  • 7
  • 16

1 Answers1

2

It's a local transfer to rsync, but a remote transfer overall. This difference matters in situations like, well, yours.

Ignacio Vazquez-Abrams
  • 45,939
  • 6
  • 79
  • 84
  • While helpful, that's not entirely clear ... if it's "local to rsync" shouldn't it behave like a local transfer and do whole file? – Daniel B. Jun 20 '11 at 12:02