Please note that this project is currently experimental.
This is a simple library for Rust to access data published via Delta Sharing. Under the hood, it uses HTTP APIs exposed by Delta Sharing.
Delta Sharing is an open protocol for secure data sharing, making it simple to share data with other organizations regardless of which computing platforms they use.
Library has an async client (delta-sharing::Client
), as well as a blocking one (delta-sharing::blocking::Client
) for smaller operations.
get_dataframe
downloads the table's parquet files (and caches then locally for subsequent queries) and returns a lazy abstraction (logical plan) over an eager DataFrame. This lazy abstraction provides methods for incrementally modifying that logical plan until output is requested (via collect
).Rust is installed, e.g. as described here
Delta Sharing is set up with at least one shared table
This library uses profile files, which are JSON files containing a user's credentials to access a Delta Sharing Server. There are several ways to get started:
bearerToken
and endpoint
values in the config.json
to match your Delta Sharing information.cargo run --example async
. When executed, it will get and display all the data from the first Data Sharing table it finds. cargo run --example blocking --features=blocking
.Add delta-sharing
to your Cargo.toml
cargo test --features blocking
(or RUST_LOG=debug cargo test --features blocking
for extra troubleshooting)cargo test
cargo fmt -- --check