#parquet #thrift #async #byte

polars-parquet-format

Safe Parquet and Thrift reader and writer (sync and async)

1 unstable release

0.1.0 Oct 27, 2024

#213 in Compression

Download history 9202/week @ 2024-12-09 8654/week @ 2024-12-16 8187/week @ 2024-12-23 7481/week @ 2024-12-30 12955/week @ 2025-01-06 12657/week @ 2025-01-13 10934/week @ 2025-01-20 11713/week @ 2025-01-27 15906/week @ 2025-02-03 15760/week @ 2025-02-10 15637/week @ 2025-02-17 17099/week @ 2025-02-24 17722/week @ 2025-03-03 17703/week @ 2025-03-10 18614/week @ 2025-03-17 18265/week @ 2025-03-24

73,301 downloads per month
Used in 136 crates (via polars-parquet)

MIT AND Apache-2.0

550KB
13K SLoC

parquet-format-safe

This crate contains an implementation of Thrift and generated Rust code associated to Parquet's thrift definition.

  • supports sync and async read API
  • supports sync and async write API
  • the write API returns the number of written bytes
  • the read API is panic free
  • the read API has a bound on the maximum number of possible bytes read, to avoid OOM.

The Rust generated code is done by a fork of thrift's compiler, available at https://github.com/coastalwhite/thrift/tree/safe.

Usage

To regenerate the thrift format implementation in Rust.

nix-shell
generate_parquet_format
mv parquet.rs src/parquet_format.rs

Dependencies

~225KB