arrow-flight

Crates.ioarrow-flight
lib.rsarrow-flight
version52.1.0
sourcesrc
created_at2020-02-07 14:11:36.733355
updated_at2024-07-06 09:56:39.492995
descriptionApache Arrow Flight
homepagehttps://github.com/apache/arrow-rs
repositoryhttps://github.com/apache/arrow-rs
max_upload_size
id205803
size750,454
Raphael Taylor-Davies (tustvold)

documentation

README

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 = "51.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.

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        |
+----------+
Commit count: 5815

cargo fmt