- Notifications
You must be signed in to change notification settings - Fork21
Fast In-Memory Data Compression Algorithm (inline C/C++) 460+MB/s compress, 2800+MB/s decompress, ratio% better than LZ4, Snappy, and Zstd@-1
License
avaneev/lzav
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
LZAV is a fast general-purpose in-memory data compression algorithm based onnow-classicLZ77 lossless datacompression method. LZAV holds a good position on the Pareto landscape offactors, among many similar in-memory (non-streaming) compression algorithms.
LZAV algorithm's code is portable, cross-platform, scalar, header-only,inlineable C (C++ compatible). It supports big- and little-endian platforms,and any memory alignment models. The algorithm is efficient on both 32- and64-bit platforms. Incompressible data almost does not expand.
LZAV does not sacrifice internal out-of-bounds (OOB) checks for decompressionspeed. This means that LZAV can be used in strict conditions where OOB memorywrites (and especially reads) that lead to a trap, are unacceptable (e.g.,real-time, system, server software). LZAV can be used safely (causing nocrashing nor UB) even when decompressing malformed or damaged compressed data.Which means that LZAV does not require calculation of a checksum (or hash) ofthe compressed data. Only a checksum of the uncompressed data may be required,depending on application's guarantees.
The internal functions available in thelzav.h
file allow you to easilyimplement, and experiment with, your own compression algorithms. LZAV streamformat and decompressor have a potential of high decompression speeds andcompression ratios, which depends on the way data is compressed.
To compress data:
#include"lzav.h"intmax_len=lzav_compress_bound(src_len );void*comp_buf=malloc(max_len );intcomp_len=lzav_compress_default(src_buf,comp_buf,src_len,max_len );if(comp_len==0&&src_len!=0 ){// Error handling.}
To decompress data:
#include"lzav.h"void*decomp_buf=malloc(src_len );intl=lzav_decompress(comp_buf,decomp_buf,comp_len,src_len );if(l<0 ){// Error handling.}
To compress data with a higher ratio, for non-time-critical uses (e.g.,compression of application's static assets):
#include"lzav.h"intmax_len=lzav_compress_bound_hi(src_len );// Note another bound function!void*comp_buf=malloc(max_len );intcomp_len=lzav_compress_hi(src_buf,comp_buf,src_len,max_len );if(comp_len==0&&src_len!=0 ){// Error handling.}
LZAV algorithm and its source code (which isISO C99) were quality-tested with:Clang, GCC, MSVC, Intel C++ compilers; on x86, x86-64 (Intel, AMD), AArch64(Apple Silicon) architectures; Windows 10, AlmaLinux 9.3, macOS 15.3.1.
The tables below present performance ballpark numbers of LZAV algorithm(based on Silesia dataset).
While LZ4 there seems to be compressing faster, LZAV comparably provides 14.2%memory storage cost savings. This is a significant benefit in database andfile system use cases since compression is only about 35% slower while CPUsrarely run at their maximum capacity anyway, and disk I/O times are reduceddue to a better compression. In general, LZAV holds a very strong position inthis class of data compression algorithms, if one considers all factors:compression and decompression speeds, compression ratio, and not lessimportant - code maintainability: LZAV is maximally portable and has a rathersmall independent codebase.
Performance of LZAV is not limited to the presented ballpark numbers.Depending on the data being compressed, LZAV can achieve 800 MB/s compressionand 5000 MB/s decompression speeds. Incompressible data decompresses at 10000MB/s rate, which is not far from the "memcpy". There are cases like theenwik9 dataset where LZAVprovides 21.2% higher memory storage savings compared to LZ4. However, onsmall data (below 50 KB), compression ratio difference between LZAV and LZ4diminishes, and LZ4 may have some advantage.
LZAV algorithm's geomean performance on a variety of datasets is 530 +/- 150MB/s compression and 3800 +/- 1300 MB/s decompression speeds, on 4+ GHz 64-bitprocessors released since 2019. Note that the algorithm exhibits adaptivequalities, and its actual performance depends on the data being compressed.LZAV may show an exceptional performance on your specific data, including, butnot limited to: sparse databases, log files, HTML/XML files.
It is also worth noting that compression methods like LZAV and LZ4 usuallyhave an advantage over dictionary- and entropy-based coding in thathash-table-based compression has a small operation and memory overhead whilethe classic LZ77 decompression has no overhead at all - this is especiallyrelevant for smaller data.
For a more comprehensive in-memory compression algorithms benchmark you mayvisitlzbench.
Silesia compression corpus
Compressor | Compression | Decompression | Ratio % |
---|---|---|---|
LZAV 4.9 | 586 MB/s | 3840 MB/s | 40.81 |
LZ4 1.9.4 | 700 MB/s | 4570 MB/s | 47.60 |
Snappy 1.1.10 | 495 MB/s | 3230 MB/s | 48.22 |
LZF 3.6 | 395 MB/s | 800 MB/s | 48.15 |
LZAV 4.9 HI | 126 MB/s | 3790 MB/s | 35.57 |
LZ4HC 1.9.4 -9 | 40 MB/s | 4360 MB/s | 36.75 |
Silesia compression corpus
Compressor | Compression | Decompression | Ratio % |
---|---|---|---|
LZAV 4.9 | 570 MB/s | 3580 MB/s | 40.81 |
LZ4 1.9.4 | 845 MB/s | 4960 MB/s | 47.60 |
Snappy 1.1.10 | 690 MB/s | 3360 MB/s | 48.22 |
LZF 3.6 | 455 MB/s | 1020 MB/s | 48.15 |
LZAV 4.9 HI | 110 MB/s | 3440 MB/s | 35.57 |
LZ4HC 1.9.4 -9 | 43 MB/s | 4890 MB/s | 36.75 |
Silesia compression corpus
Compressor | Compression | Decompression | Ratio % |
---|---|---|---|
LZAV 4.9 | 510 MB/s | 3080 MB/s | 40.81 |
LZ4 1.9.4 | 675 MB/s | 4560 MB/s | 47.60 |
Snappy 1.1.10 | 415 MB/s | 2440 MB/s | 48.22 |
LZF 3.6 | 310 MB/s | 700 MB/s | 48.15 |
LZAV 4.9 HI | 110 MB/s | 3050 MB/s | 35.57 |
LZ4HC 1.9.4 -9 | 36 MB/s | 4430 MB/s | 36.75 |
P.S. Popular Zstd's benchmark was not included here, because it is not a pureLZ77, much harder to integrate, and has a much larger code size - a differentleague, close to zlib. Here are author's Zstd measurements withTurboBench, on Ryzen 3700X,on Silesia dataset:
Compressor | Compression | Decompression | Ratio % |
---|---|---|---|
zstd 1.5.5 -1 | 460 MB/s | 1870 MB/s | 41.0 |
zstd 1.5.5 1 | 436 MB/s | 1400 MB/s | 34.6 |
LZAV API is not equivalent to LZ4 nor Snappy API. For example, the "dstl"parameter in the decompressor should specify the original uncompressed length,which should have been previously stored in some way, independent of LZAV.
From a technical point of view, peak decompression speeds of LZAV have animplicit limitation arising from its more complex stream format, compared toLZ4: LZAV decompression requires more code branching. Another limiting factoris a rather big 8 MiB LZ77 window which is not CPU cache-friendly. On theother hand, without these features it would not be possible to achievecompetitive compression ratios while having fast compression speeds.
LZAV supports compression of continuous data blocks of up to 2 GB. Largerdata should be compressed in chunks of at least 32 MB. Using smaller chunksmay reduce the achieved compression ratio.
- Paul Dreik, for finding memcpy UB in thedecompressor.
About
Fast In-Memory Data Compression Algorithm (inline C/C++) 460+MB/s compress, 2800+MB/s decompress, ratio% better than LZ4, Snappy, and Zstd@-1