Re: performance suggestion: sparse files

2003-09-09 Thread Jon Howell
I'd want to be convinced that this was really enough cheaper than -z1 to justify the complexity. Right; as I thought about it more, it's only interesting in a corner case. If you have enough CPU cycles lying around (because you're bottlenecked on the network, and your CPU isn't busy with other

Re: performance suggestion: sparse files

2003-09-09 Thread Martin Pool
On 9 Sep 2003 Jon Howell [EMAIL PROTECTED] wrote: Actually you can guess by looking at the allocated-blocks measure, and use this to guess whether it's preallocated zeros or sparse, which might be useful for backups. But there is no way around reading the blocks. Sure. Bummer; that's a

performance suggestion: sparse files

2003-08-26 Thread Jon Howell
So I was transferring a 2GB virtual machine disk image image over a slow wireless link. Of course I used --sparse, to keep the image small on the destination end as well as on the source end. Much to my surprise, I noticed that the transfer took a long time even when it got past the first 0.5GB

Re: performance suggestion: sparse files

2003-08-26 Thread jw schultz
On Tue, Aug 26, 2003 at 11:28:12AM -0700, Jon Howell wrote: So I was transferring a 2GB virtual machine disk image image over a slow wireless link. Of course I used --sparse, to keep the image small on the destination end as well as on the source end. Much to my surprise, I noticed that the