Official Rust implementation of Apache Arrow

Clone this repo:
  1. dfe0f26 Update itertools requirement from 0.12.0 to 0.13.0 in /object_store (#5780) by dependabot[bot] · 10 hours ago master
  2. 28c1cae Fix documentation for parquet `parse_metadata`, `decode_metadata` and `decode_footer` (#5781) by Andrew Lamb · 10 hours ago
  3. fa2ba9e Improve error message for timestamp queries outside supported range (#5730) by Abi · 35 hours ago
  4. 0c1e3b8 Remove harmful table lookup optimization for bit operations (#5772) by Hadrien G · 2 days ago
  5. 30767a6 Remove deprecated comparison kernels (#4733) (#5768) by Raphael Taylor-Davies · 2 days ago

Native Rust implementation of Apache Arrow and Apache Parquet

Coverage Status

Welcome to the Rust implementation of Apache Arrow, the popular in-memory columnar format.

This repo contains the following main components:

CrateDescriptionLatest API DocsREADME
arrowCore Arrow functionality (memory layout, arrays, kernels)docs.rs(README)
parquetParquet columnar file formatdocs.rs(README)
arrow-flightArrow-Flight IPC protocoldocs.rs(README)
object-storeobject store (aws, azure, gcp, local, in-memory)docs.rs(README)

The current development version the API documentation in this repo can be found here.

Release Versioning and Schedule

arrow and parquet crates

The Arrow Rust project releases approximately monthly and follows Semantic Versioning.

Due to available maintainer and testing bandwidth, arrow crates (arrow, arrow-flight, etc.) are released on the same schedule with the same versions as the parquet and parquet-derive crates.

Starting June 2024, we plan to release new major versions with potentially breaking API changes at most once a quarter, and release incremental minor versions in the intervening months. See this ticket for more details.

For example:

Approximate DateVersionNotes
Jun 202452.0.0Major, potentially breaking API changes
Jul 202452.1.0Minor, NO breaking API changes
Aug 202452.2.0Minor, NO breaking API changes
Sep 202453.0.0Major, potentially breaking API changes

object_store crate

The object_store crate is released independently of the arrow and parquet crates and follows Semantic Versioning. We aim to release new versions approximately every 2 months.

Related Projects

There are two related crates in different repositories

CrateDescriptionDocumentation
datafusionIn-memory query engine with SQL support(README)
ballistaDistributed query execution(README)

Collectively, these crates support a wider array of functionality for analytic computations in Rust.

For example, you can write SQL queries or a DataFrame (using the datafusion crate) to read a parquet file (using the parquet crate), evaluate it in-memory using Arrow's columnar format (using the arrow crate), and send to another process (using the arrow-flight crate).

Generally speaking, the arrow crate offers functionality for using Arrow arrays, and datafusion offers most operations typically found in SQL, including joins and window functions.

You can find more details about each crate in their respective READMEs.

Arrow Rust Community

The dev@arrow.apache.org mailing list serves as the core communication channel for the Arrow community. Instructions for signing up and links to the archives can be found on the Arrow Community page. All major announcements and communications happen there.

The Rust Arrow community also uses the official ASF Slack for informal discussions and coordination. This is a great place to meet other contributors and get guidance on where to contribute. Join us in the #arrow-rust channel and feel free to ask for an invite via:

  1. the dev@arrow.apache.org mailing list
  2. the GitHub Discussions
  3. the Discord channel

The Rust implementation uses GitHub issues as the system of record for new features and bug fixes and this plays a critical role in the release process.

For design discussions we generally collaborate on Google documents and file a GitHub issue linking to the document.

There is more information in the contributing guide.