mtanski / dbkit

Columnar query processing engine in Rust
31 stars 5 forks source link

dbkit

Join the chat at https://gitter.im/rust-dbkit/Lobby Build Status Crates.io

Columnar query processing engine written in Rust. Part of the dbkit suite of Rust libraries. dbkit isn't a standalone database, rather its a group of libaries that provided building blocks to build a database or database like data processing applications.

dbkit can be used to build:

Since the project early in its life and under currently under heavy development and no backwards compatability is provided even in minor versions.

Personal Goals

dbkit is my personal project to improve my Rust skills and be means of learning a number of new techniques (such a code generation) through the lense of databases.

This project has been influenced by many database papers, open source databases, CMU's database group's Youtube channel and of course my past career of building weird little databases.

Project Goals

Documentation

Automatically generated documentation is available from docs.rs

Requirements

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.

Rust unsafe

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.