Skip to content

The core repository of implementing PostgreSQL compatible distributed database in Rust

License

Notifications You must be signed in to change notification settings

calldata/database

 
 

Repository files navigation

Database

Merge Coverage Status

The project doesn't have any name so let it be database for now.

Play around with project

See docs

Project structure

  • docs/ - project documentation
  • src/kernel/ - core concept of the system. All modules (except protocol) depends on it. It should provide conceptual abstraction for other modules. Good examples are SystemResult and SystemError. Other part of system uses them to handle errors that are not local for a module but more system wide.
  • src/node/ - database node (member, server, instance) code. Handles network communication with clients and process management of incoming queries. It also contains concrete trait implementations from src/protocol/ module.
  • src/protocol/ - server-side (backend) API of PostgreSQL Wire Protocol The goal is to provide high level traits and structs to help other rust database implementations be PostgreSQL compatible. Must not depend on any modules of the system and has as small as possible dependencies on other crates because it is intended to move out of the project into completely separate crate. Right now it is in the project because of ease of testing, prototyping and development.
  • src/sql_engine/ - module to execute incoming SQL queries. That is it.
  • src/sql_types/ - module contains code to support different SQL types and incoming data validation
  • src/storage/ - module to persist and retrieve execution results of SQL queries. It is split into two major parts: FrontendStorage and BackendStorage. FrontendStorage is responsible to provide high level relational API like CREATE SCHEMA, CREAT TABLE and CREATE INDEX. BackendStorage is responsible to hide actual on-disk storage implementation and provide low level API for FrontendStorage like create a namespace, create an object, read/write data in binary format from/to disk.

Development

Setting up integration suite for local testing

For now, it is local and manual - that means some software has to be installed on a local machine and queries result has to be checked visually.

  1. Install psql (PostgreSQL client)
    1. Often it comes with PostgreSQL binaries. On macOS, you can install it with brew executing the following command:
    brew install postgresql
  2. Start the database instance with the command:
    cargo run
  3. Start psql with the following command:
    psql -h 127.0.0.1 -W
    1. enter any password
  4. Run sql scripts from compatibility folder

Running Functional tests

We use PyTest for functional tests. To run tests locally you need to set up python environment with the following commands:

  1. If you use linux or macos it is most probably you have python installed. For windows, you can easily install python from official site.
  2. Install python dependencies with pip requirements executing the following command:
    pip install -r tests/functional/requirements.txt
  3. or with pip3:
    pip3 install -r tests/functional/requirements.txt
  4. After that you can run all tests with:
    pytest -v tests/functional/
  5. or tests in specified file with:
    pytest -v tests/functional/<test_file>.py

pip3 and python3 OR pip and python - depends on your system and your preferences.

For system with both python 2 and 3 - use python3 and pip3 to run tests with the 3rd version of python.

About

The core repository of implementing PostgreSQL compatible distributed database in Rust

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 96.0%
  • Python 3.8%
  • Other 0.2%