79 releases (major breaking)

54.0.0 Dec 23, 2024
53.3.0 Nov 20, 2024
53.2.0 Oct 24, 2024
52.2.0 Jul 28, 2024
0.16.0 Feb 7, 2020

#1848 in Database interfaces

Download history 17416/week @ 2024-09-24 16646/week @ 2024-10-01 22096/week @ 2024-10-08 23945/week @ 2024-10-15 22698/week @ 2024-10-22 20909/week @ 2024-10-29 16878/week @ 2024-11-05 17491/week @ 2024-11-12 21277/week @ 2024-11-19 15539/week @ 2024-11-26 16982/week @ 2024-12-03 17436/week @ 2024-12-10 18685/week @ 2024-12-17 12500/week @ 2024-12-24 14116/week @ 2024-12-31 14958/week @ 2025-01-07

63,098 downloads per month
Used in 26 crates (18 directly)

Apache-2.0

4.5MB
88K SLoC

Apache Arrow Flight

Crates.io

See the API documentation for examples and the full API.

The API documentation for most recent, unreleased code is available here.

Usage

Add this to your Cargo.toml:

[dependencies]
arrow-flight = "54.0.0"

Apache Arrow Flight is a gRPC based protocol for exchanging Arrow data between processes. See the blog post Introducing Apache Arrow Flight: A Framework for Fast Data Transport for more information.

This crate provides a Rust implementation of the Flight.proto gRPC protocol and examples that demonstrate how to build a Flight server implemented with tonic.

Feature Flags

  • flight-sql-experimental: Enables experimental support for Apache Arrow FlightSQL, a protocol for interacting with SQL databases.

  • tls: Enables tls on tonic

CLI

This crates offers a basic Apache Arrow FlightSQL command line interface.

The client can be installed from the repository:

$ cargo install --features=cli,flight-sql-experimental,tls --bin=flight_sql_client --path=. --locked

The client comes with extensive help text:

$ flight_sql_client help

A query can be executed using:

$ flight_sql_client --host example.com statement-query "SELECT 1;"
+----------+
| Int64(1) |
+----------+
| 1        |
+----------+

Dependencies

~10–24MB
~360K SLoC