Compression formats for kernel.org
Compression formats for kernel.org
Posted Feb 18, 2010 14:43 UTC (Thu) by pointwood (guest, #2814)In reply to: Compression formats for kernel.org by dlang
Parent article: Compression formats for kernel.org
Posted Feb 18, 2010 17:42 UTC (Thu)
by intgr (subscriber, #39733)
[Link]
Just for some rough figures, I'm decompressing the Linux kernel 2.6.32 source tarball, on my quad-core Phenom II system:
So, parallel bzip2 decompression will probably beat gzip at 8 cores, whereas XZ would be on par with just 2 cores. While XZ is slow at compression, it will definitely beat gzip and bzip2 in parallel decompression.
Posted Feb 23, 2010 6:23 UTC (Tue)
by SEJeff (guest, #51588)
[Link]
Compression formats for kernel.org
pbzcat, four threads, takes 4.1 seconds of wall-clock time (15.6s CPU time).
xzcat, single thread, takes just 4.7 seconds.
zcat, single thread, takes 2.3 seconds
Compression formats for kernel.org
it uses a ton of ram and is still slow.