I store a very large (TBytes) amount of logs. These logs will rarely be extracted, and when they will - only a single file will be required.
Could you recommend an ultra-efficient and extremely stable compression algorithm that's considerably better than bzip2?
lzma (aka xz) should do notably better than bzip2, but will take a bit longer.
paq (aka zp) will do quite a bit better yet, but will take ages to compress and just as long to decompress.
Both are available for Windows and *nix environments (most *nix systems have packages available)
A quick test on a smartd log:
*I've got -O3 compiled ports for
xz
andzp
. Thegzip
andbzip2
binaries were precompiled with no optimization.