0

I need transfer everyday a lot of compressed tar files from a hosting server to a zfs data storage server.

The standard way to rsync transfer seems to not zfs snapshot friendly. Each snapshot keep all daily data (not keep delta blocks only).

Someone knows how to transfer these files and be able to make snapshots keeping delta data ?

2
  • Have you tried using scp Commented May 12, 2016 at 11:09
  • scp file transfers all data, I want to transfer only the daily differences Commented May 12, 2016 at 11:50

1 Answer 1

0

Your source is probably not ZFS? Otherwise zfs send|zfs receive would be recommended.

You can tell rsync to perform inplace transfers, from man rsync:

--inplace This option changes how rsync transfers a file when its data needs to be updated: instead of the default method of creating a new copy of the file and moving it into place when it is complete, rsync instead writes the updated data directly to the destination file.

Please read the manual further about the effects using --inplace.

1
  • @Rpereyra, did the rsync --inplace option solve your issue? Commented May 13, 2016 at 6:33

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.