29 releases
0.11.7 | Jul 7, 2023 |
---|---|
0.11.5 | Feb 5, 2023 |
0.11.4 | Nov 19, 2022 |
0.11.1 | Jul 24, 2022 |
0.2.2 | Jul 19, 2021 |
#128 in Compression
148 downloads per month
Used in 5 crates
(4 directly)
210KB
5.5K
SLoC
q_compress
Usage as a Standalone Format
use q_compress::{auto_compress, auto_decompress, DEFAULT_COMPRESSION_LEVEL};
fn main() {
// your data
let mut my_ints = Vec::new();
for i in 0..100000 {
my_ints.push(i as i64);
}
// Here we let the library choose a configuration with default compression
// level. If you know about the data you're compressing, you can compress
// faster by creating a `CompressorConfig`.
let bytes: Vec<u8> = auto_compress(&my_ints, DEFAULT_COMPRESSION_LEVEL);
println!("compressed down to {} bytes", bytes.len());
// decompress
let recovered = auto_decompress::<i64>(&bytes).expect("failed to decompress");
println!("got back {} ints from {} to {}", recovered.len(), recovered[0], recovered.last().unwrap());
}
To run something right away, try the benchmarks.
For a lower-level standalone API that allows writing/reading one chunk at a time and extracting all metadata, see the docs.rs documentation.
Usage as a Wrapped Format
To embed/interleave q_compress
in another data format, it is better to use
the wrapped API and format than standalone.
See the wrapped time series example.
This allows
- fine-level data paging with good compression ratio down to page sizes of >20 numbers (as long as the overall chunk has >2k or so)
- less bloat by omitting metadata that the wrapping format must retain
Library Changelog
See changelog.md
Advanced
Custom Data Types
Small data types can be efficiently compressed in expansion:
for example, compressing u8
data as a sequence of u16
values. The only cost to using a larger datatype is a small
increase in chunk metadata size.
When necessary, you can implement your own data type via
q_compress::types::NumberLike
and (if the existing signed/unsigned
implementations are insufficient)
q_compress::types::SignedLike
and
q_compress::types::UnsignedLike
.
Seeking and Quantile Statistics
Recall that each chunk has a metadata section containing
- the total count of numbers in the chunk,
- the ranges for the chunk and count of numbers in each range,
- and the size in bytes of the compressed body.
Using the compressed body size, it is easy to seek through the whole file and collect a list of all the chunk metadatas. One can aggregate them to obtain the total count of numbers in the whole file and even an approximate histogram. This is typically about 100x faster than decompressing all the numbers.
See the fast seeking example.