Replicating binary file difference using VolSync (rsync-tls) #860
-
Hi |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
VolSync uses rsync directly to do the replication, so the optimizations are what rsync supports. The short answer is: It should only transfer the changed data blocks within the file, but the full file will be read (on both sides) in order to calculate the differences. |
Beta Was this translation helpful? Give feedback.
VolSync uses rsync directly to do the replication, so the optimizations are what rsync supports.
A description of the rsync process is here: https://rsync.samba.org/how-rsync-works.html
The short answer is: It should only transfer the changed data blocks within the file, but the full file will be read (on both sides) in order to calculate the differences.