|
|
|
|
|
by rleigh
2028 days ago
|
|
rsync doesn't scale like zfs send/recv. It requires scanning of every file at both the source and destination to compute the delta to send. zfs snapshots and send/recv don't need to do that. The delta is already fully described by the snapshots themselves. zfs is also working with immutable snapshots. It guarantees the source and destination copies are identical; rsync can't do much about the source and destination being modified while it is running since it's reliant upon other users of the system not touching the data being synced. That's not to say rsync doesn't work. It does. But it doesn't scale well, and the data integrity guarantees aren't there. |
|