Limbo is a project to build the next evolution of SQLite.
Find a file
2024-07-31 17:58:45 +02:00
.github/workflows github: Don't build Limbo for SQLite3 compat tests 2024-07-25 12:12:33 +03:00
bindings/wasm fix conflicts 2024-07-31 17:38:33 +02:00
cli core: add cacheflush in cli query 2024-07-31 17:27:02 +02:00
core core: fix completion generic io 2024-07-31 17:58:45 +02:00
perf/latency perf/latency: Add rust-toolchain to limbo benchmark 2024-07-22 22:24:24 +03:00
simulator fix conflicts 2024-07-31 17:38:33 +02:00
sqlite3 Refactor join processing 2024-07-23 15:04:40 +03:00
testing testing: Make individual test files executable 2024-07-29 09:41:40 +03:00
.gitignore fix: replace unwrap() with ? 2024-07-07 19:12:48 +08:00
Cargo.lock Kill anyhow usage 2024-07-25 17:15:08 +03:00
Cargo.toml Limbo 0.0.2 2024-07-24 11:14:31 +03:00
CHANGELOG.md Update CHANGELOG.md 2024-07-25 21:24:29 +03:00
COMPAT.md feat: add RTRIM(X) and RTRIM(X,Y) scalar function 2024-07-28 21:17:53 +07:00
CONTRIBUTING.md Update CONTRIBUTING.md 2024-07-24 09:04:49 +03:00
flake.lock improve nix flake by moving to fenix 2024-07-16 19:52:39 -07:00
flake.nix improve nix flake by moving to fenix 2024-07-16 19:52:39 -07:00
LICENSE.md License 2024-05-07 16:33:44 -03:00
limbo.png Limbo mascot 2024-07-05 09:51:56 +03:00
Makefile build: Add sqlite3 API tests to make test 2024-07-17 12:13:45 +03:00
Pipfile Updated Pipfile 2024-07-12 13:07:34 -07:00
Pipfile.lock Added Pipfile and Pipfile.lock 2024-07-12 12:38:56 -07:00
README.md Wrap installation command to multiple lines 2024-07-17 17:01:55 +03:00

Limbo

Limbo

Limbo is a work-in-progress, in-process OLTP database management system, compatible with SQLite.

Build badge MIT


Features

  • In-process OLTP database engine library
  • Asynchronous I/O support with io_uring
  • SQLite compatibility (status)
    • SQL dialect support
    • File format support (read-only)
    • SQLite C API
  • JavaScript/WebAssembly bindings (wip)

Getting Started

Installing:

curl --proto '=https' --tlsv1.2 -LsSf \
  https://github.com/penberg/limbo/releases/latest/download/limbo-installer.sh | sh

Limbo is currently read-only. You can either use the sqlite3 program to create a database:

$ sqlite3 database.db
SQLite version 3.42.0 2023-05-16 12:36:15
Enter ".help" for usage hints.
sqlite> CREATE TABLE users (id INT PRIMARY KEY, username TEXT);
sqlite> INSERT INTO users VALUES (1, 'alice');
sqlite> INSERT INTO users VALUES (2, 'bob');

or use the testing script to generate one for you:

pipenv run ./testing/gen-database.py

You can then start the Limbo shell with:

$ cargo run database.db
Welcome to Limbo SQL shell!
> SELECT * FROM users LIMIT 1;
|1|Cody|Miller|mhurst@example.org|525.595.7319x21268|33667 Shaw Extension Suite 104|West Robert|VA|45161|`

Developing

Run tests:

cargo test

Test coverage report:

cargo tarpaulin -o html

Run benchmarks:

cargo bench

Run benchmarks and generate flamegraphs:

echo -1 | sudo tee /proc/sys/kernel/perf_event_paranoid
cargo bench --bench benchmark -- --profile-time=5

FAQ

How is Limbo different from libSQL?

Limbo is a research project to build a SQLite compatible in-process database in Rust with native async support. The libSQL project, on the other hand, is an open source, open contribution fork of SQLite, with focus on production features such as replication, backups, encryption, and so on. There is no hard dependency between the two projects. Of course, if Limbo becomes widely successful, we might consider merging with libSQL, but that is something that will be decided in the future.

Publications

  • Pekka Enberg, Sasu Tarkoma, Jon Crowcroft Ashwin Rao (2024). Serverless Runtime / Database Co-Design With Asynchronous I/O. In EdgeSys 24. [PDF]
  • Pekka Enberg, Sasu Tarkoma, and Ashwin Rao (2023). Towards Database and Serverless Runtime Co-Design. In CoNEXT-SW 23. [PDF] [Slides]

Contributing

We'd love to have you contribute to Limbo! Check out the contribution guide to get started.

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Limbo by you, shall be licensed as MIT, without any additional terms or conditions.