Columnar query processing engine written in Rust. dbkit is not a standalone database, rather it a library that be leveraged in other poejcts.
dbkit can be used to build: * It can be used to implement parts of an OLAP database * Building (big) data workflows pipelines that using relational algerbra / calculus operators * Building tools that operate structured data
Since the project early in its life and under currently under heavy development and no backwards compatability is provided even in minor versions.
dbkit is inspired by the Supersonic columar query engine by Google. While dbkit draws a lot of inspiration from Supersonic it is not meant to be a strait port from C++ to Rust.
Automatically generated documentation is available from docs.rs
The project requires the Rust language compiler and cargo to build. Currently the project only builds using nightly channel of rust to due to aggressive use of features only present in nightly Rust.
The project makes extensive use unsafe Rust particulary in lower level primatives. I would love PRs that reduce the use of unsafe where its possible without a performance penalty.