| Crates.io | gzp |
| lib.rs | gzp |
| version | 1.0.1 |
| created_at | 2021-08-05 13:13:47.933288+00 |
| updated_at | 2025-02-28 19:40:49.811057+00 |
| description | Parallel Compression |
| homepage | https://github.com/sstadick/gzp |
| repository | https://github.com/sstadick/gzp |
| max_upload_size | |
| id | 431937 |
| size | 5,776,211 |
Multi-threaded encoding and decoding.
This crate provides a near drop in replacement for Write that has will compress chunks of data in parallel and write
to an underlying writer in the same order that the bytes were handed to the writer. This allows for much faster
compression of data.
Additionally, this provides multi-threaded decompressors for Mgzip and BGZF formats.
By default gzp has the deflate_default and libdeflate features enabled which brings in the best performing zlib
implementation as the backend for flate2 as well as libdeflater for the block gzip formats.
[dependencies]
gzp = { version = "*" }
Zlib format will not be available.[dependencies]
gzp = { version = "*", default-features = false, features = ["deflate_rust"] }
[dependencies]
gzp = { version = "*", default-features = false, features = ["snap_default"] }
Note: if you are running into compilation issues with libdeflate and the i686-pc-windows-msvc target, please see this issue for workarounds.
Simple example
use std::{env, fs::File, io::Write};
use gzp::{deflate::Gzip, ZBuilder, ZWriter};
fn main() {
let mut writer = vec![];
// ZBuilder will return a trait object that transparent over `ParZ` or `SyncZ`
let mut parz = ZBuilder::<Gzip, _>::new()
.num_threads(0)
.from_writer(writer);
parz.write_all(b"This is a first test line\n").unwrap();
parz.write_all(b"This is a second test line\n").unwrap();
parz.finish().unwrap();
}
An updated version of pgz.
use gzp::{
ZWriter,
deflate::Mgzip,
par::{compress::{ParCompress, ParCompressBuilder}}
};
use std::io::{Read, Write};
fn main() {
let chunksize = 64 * (1 << 10) * 2;
let stdout = std::io::stdout();
let mut writer: ParCompress<Mgzip> = ParCompressBuilder::new().from_writer(stdout);
let stdin = std::io::stdin();
let mut stdin = stdin.lock();
let mut buffer = Vec::with_capacity(chunksize);
loop {
let mut limit = (&mut stdin).take(chunksize as u64);
limit.read_to_end(&mut buffer).unwrap();
if buffer.is_empty() {
break;
}
writer.write_all(&buffer).unwrap();
buffer.clear();
}
writer.finish().unwrap();
}
Same thing but using Snappy instead.
use gzp::{parz::{ParZ, ParZBuilder}, snap::Snap};
use std::io::{Read, Write};
fn main() {
let chunksize = 64 * (1 << 10) * 2;
let stdout = std::io::stdout();
let mut writer: ParZ<Snap> = ParZBuilder::new().from_writer(stdout);
let stdin = std::io::stdin();
let mut stdin = stdin.lock();
let mut buffer = Vec::with_capacity(chunksize);
loop {
let mut limit = (&mut stdin).take(chunksize as u64);
limit.read_to_end(&mut buffer).unwrap();
if buffer.is_empty() {
break;
}
writer.write_all(&buffer).unwrap();
buffer.clear();
}
writer.finish().unwrap();
}
pigz, including
implementation details for some functions.PRs are very welcome! Please run tests locally and ensure they are passing. May tests are ignored in CI because the CI instances don't have enough threads to test them / are too slow.
cargo test --all-features && cargo test --all-features -- --ignored
Note that tests will take 30-60s.
All benchmarks were run on the file in ./bench-data/shakespeare.txt catted together 100 times which creates a rough
550Mb file.
The primary benchmark takeaway is that compression time decreases proportionately to the number of threads used.