Displaying 2 results from an estimated 2 matches for "rsync_bkpdir".
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 problem is that although "rsync" shows that delta transfer is used(wh...
2019 Feb 13
0
rsync rewrites all blocks of large files although it uses delta transfer
...icate the file being updated before updating it.
On 2/13/19 10:47 AM, Delian Krustev via rsync wrote:
> 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 problem is that alt...