Skip to content

Instantly share code, notes, and snippets.

@chetan
Last active September 27, 2016 18:28
Show Gist options
  • Save chetan/081abaa09c5463b9b959380c26212c55 to your computer and use it in GitHub Desktop.
Save chetan/081abaa09c5463b9b959380c26212c55 to your computer and use it in GitHub Desktop.

tl;dr: xz offers much better compression but at the expense of far slower (de)compress speed. we should probably switch to gz (or some other codec offering a better balance of compression/decompression speeds), but it's hard to confirm the overall improvement without first rebuilding world.

Reference benchmark

compress summary decompress summary

https://www.opencpu.org/posts/brotli-benchmarks/

Tested below packages by running hab pkg install core/<pkg> inside a studio and then tarring up the contents of /hab/pkgs/core/<pkg>

core/jdk8

$ ls -lh *.tar
-rw-r--r-- 1 chetan staff 351M Sep 27 11:26 jdk8.tar

$ tar -tf jdk8.tar | wc -l
1846

$ time xz --keep jdk8.tar
real	2m25.787s

$ time gzip --keep jdk8.tar
real	0m13.055s

$ ls -lh
-rw-r--r-- 1 chetan staff 173M Sep 27 11:26 jdk8.tar.gz
-rw-r--r-- 1 chetan staff 143M Sep 27 11:26 jdk8.tar.xz

$ time gunzip --keep jdk8.tar.gz
real	0m1.480s

$ time xz -d --keep jdk8.tar.xz
real	0m8.950s

core/mysql

$ ls -lh mysql.tar
-rw-r--r-- 1 chetan staff 1.7G Sep 27 11:58 mysql.tar

$ tar -tf mysql.tar | wc -l
13732

$ time gzip --keep mysql.tar
real	1m5.738s

$ time xz --keep mysql.tar
real	10m58.610s

-rw-r--r-- 1 chetan staff 439M Sep 27 11:58 mysql.tar.gz
-rw-r--r-- 1 chetan staff 240M Sep 27 11:58 mysql.tar.xz

$ time gunzip --keep mysql.tar.gz
real	0m7.213s

$ time xz -d --keep mysql.tar.xz
real	0m28.616s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment