Software: GZIP vs. BZIP2 vs. XZ - performance

From Luky-Wiki
Revision as of 13:59, 27 November 2013 by Lukas Dzunko (talk | contribs) (Compression ratio)

Jump to: navigation, search

I was part of discussion on G+ recently. Discussion was about best possible compression method for Linux kernel. Later it was extended also to user space compression algorithm. I think it will be interesting to see various compress method and levels on different type of files.

Input data

For test i selected following files:

  • DVD.iso - iso image containing mpeg2 stream (DVD-Video) and jpeg files (pictures)
  • fs.bin - ext4 file system containing "linux.tar" and "random.bin"
  • linux.tar - tarball archive of Linux kernel sources + objects and final kernel / module images
  • random.bin - file containing data from /dev/urandom
  • zero.bin - file containing only 'zero' data (read /dev/zero)

As a preparation i executed following cycle:

for a in *
do
        for b in 1 6 9
        do
                cat ${a} | gzip  -${b} > ${a}.${b}.gz
                cat ${a} | bzip2 -${b} > ${a}.${b}.bz2
                cat ${a} | xz    -${b} > ${a}.${b}.xz
        done
done

Test methodology

Test is executed on "Intel(R) Atom(TM) CPU 330 @ 1.60GHz". System was running in dual core mode with HT enabled (SMP). There should be no significant difference using one core and "UP" code as compression/decompression is done in one thread. System was configured with 3GB of usable RAM memory and without CPU frequency scaling. At time of test system was idling. Sequential disk read speed is 80 MB/sec so it should not affect testing. I used /dev/null as target for compression and decompression to prevent possible problems with concurrent I/O and cache entries.

Result

Compression ratio

Table contain size reported by stat and ls -lh command:

DVD.iso fs.bin linux.tar random.bin zero.bin
source 6189107200 (5,8G) 4294967296 (4,0G) - - -
gzip -1 5887330412 (5,5G) 1307236772 (1,3G) - - -
gzip -6 5879295258 (5,5G) 1265502809 (1,2G) - - -
gzip -9 5878183653 (5,5G) 1263912039 (1,2G) - - -
bzip2 -1 5845697940 (5,5G) 1259732950 (1,2G) - - -
bzip2 -6 5485927519 (5,2G) 1235652239 (1,2G) - - -
bzip2 -9 5430387273 (5,1G) 1231448849 (1,2G) - - -
xz -1 5383272868 (5,1G) 1227513964 (1,2G) - - -
xz -6 5305999740 (5,0G) 1188389560 (1,2G) - - -
xz -9 5264433664 (5,0G) 1174081380 (1,1G) - - -

Compression

DVD.iso fs.bin linux.tar random.bin zero.bin
source - - - - -
gzip -1 - - - - -
gzip -6 - - - - -
gzip -9 - - - - -
bzip2 -1 - - - - -
bzip2 -6 - - - - -
bzip2 -9 - - - - -
xz -1 - - - - -
xz -6 - - - - -
xz -9 - - - - -

Decompression

DVD.iso fs.bin linux.tar random.bin zero.bin
source - - - - -
gzip -1 - - - - -
gzip -6 - - - - -
gzip -9 - - - - -
bzip2 -1 - - - - -
bzip2 -6 - - - - -
bzip2 -9 - - - - -
xz -1 - - - - -
xz -6 - - - - -
xz -9 - - - - -

Sumary