Dan Stromberg
2004-Sep-07 21:02 UTC
large blocksize for transferring files from one filesystem to another on the same disk?
Is there any way of increasing rsync's block transfer size for when you need to transfer data from one filesystem to another on the same disk? Using a large blocksize tends to decrease track to track seeks. If I put a large dd or something in between two tar's in such a situation, I see over double the throughput on an AIX system (1M vs 64K). Thanks. -- Dan Stromberg DCS/NACS/UCI <strombrg@dcs.nac.uci.edu> -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://lists.samba.org/archive/rsync/attachments/20040907/c6949c4c/attachment.bin
Wayne Davison
2004-Sep-07 23:17 UTC
large blocksize for transferring files from one filesystem to another on the same disk?
On Tue, Sep 07, 2004 at 02:02:23PM -0700, Dan Stromberg wrote:> Is there any way of increasing rsync's block transfer size for when you > need to transfer data from one filesystem to another on the same disk?Since a local transfer is using --whole-file mode, it should be possible to just set the --block-size to a really large value (in bytes). ..wayne..