search for: 55ce47fe

Displaying 2 results from an estimated 2 matches for "55ce47fe".

2019 Feb 13
0
rsync rewrites all blocks of large files although it uses delta transfer
...large amplification created by Rsyn's many small writes when using --inplace. -------------- next part -------------- A non-text attachment was scrubbed... Name: remi.vcf Type: text/x-vcard Size: 193 bytes Desc: not available URL: <http://lists.samba.org/pipermail/rsync/attachments/20190213/55ce47fe/remi.vcf> -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 473 bytes Desc: OpenPGP digital signature URL: <http://lists.samba.org/pipermail/rsync/attachments/20190213/55ce47fe/signature.sig>
2019 Feb 13
4
rsync rewrites all blocks of large files although it uses delta transfer
Hi All, For a backup purpose I'm trying to transfer only the changed blocks of large files. Thus I've run "rsync" with the appropriate options: RSYNC_BKPDIR=`mktemp -d` rsync \ --archive \ --no-whole-file \ --inplace \ --backup \ --backup-dir="$RSYNC_BKPDIR" \ --verbose \ --stats \ /var/backups/mysql-dbs/. \ /mnt/bkp/var/backups/mysql-dbs/. The