rqlite is a lightweight, distributed DBMS which uses SQLite as its storage engine. rqlite uses the Raft protocol to achieve consensus across multiple instances of the SQLite database, ensuring that every change made to the system is made to a quorum of SQLite databases, or none at all.[04]
- Website
- https://rqlite.io[01]
- Source Code
- https://github.com/rqlite/rqlite[02]
- Tech Docs
- https://rqlite.io/docs/[03]
- Developer
- Country of Origin
- US
- Start Year
- 2014 [06]
- Project Type
- Open Source
- Written in
- Go
- Embeds / Uses
- SQLite
- License
- MIT License
rqlite is a lightweight, distributed DBMS which uses SQLite as its storage engine. rqlite uses the Raft protocol to achieve consensus across multiple instances of the SQLite database, ensuring that every change made to the system is made to a quorum of SQLite databases, or none at all.[04]
History[05][06]
rqlite was originally a prototype application, showing how the Raft consensus algorithm could be applied to various software state machines -- in this particular instance a SQLite database.
It has since developed into a full relational database management system.
Concurrency Control
rqlite can service multiple queries concurrently, but actual concurrency depends on the underlying SQLite functionality.
Foreign Keys[07]
Since rqlite uses SQLite as its storage engine, it can make full use of SQLite Foreign Key support.
Indexes[08][09][10][11]
Since rqlite uses SQLite as its storage engine, it can make full use of SQLite Indexes
Isolation Levels[12]
Since rqlite uses SQLite as its storage engine, it offers the same isolation levels as SQLite.
Joins[13]
Since rqlite uses SQLite as its storage engine, it performs Joins in the same manner as SQLite, within a single rqlite node. It is important to note however, that even though rqlite supports clustering, it does not support Joins across rqlite nodes in that cluster.
Logging
rqlite provides data durability via the Raft consensus system. Every change made to the SQLite database is written to the Raft log, and that log is persisted to disk. In the event of a restart or recovery operation, the SQLite database is completely rebuilt from the data contained in the Raft log.
Query Interface[14][15]
rqlite is primarily queried via its HTTP(S) API. A query is formed by encapsulating a SQL statement in a HTTP request. And when using the "on disk" mode of rqlite, the SQLite database can also be queried directly.
Storage Architecture[16]
rqlite supports both in-memory and disk-oriented storage. The SQLite database can be stored on disk, or in memory. The Raft log is stored on disk.
Storage Model
Since rqlite uses SQLite as its storage engine, it offers the same storage model as SQLite.
System Architecture[18]
rqlite's system architecture is comprised of 3 distinct subsystems: the HTTP serving layer, the Raft consensus layer, and the (embedded) SQLite database.
The HTTP layer is responsible for responding to queries, and returning results. The Raft consensus layer controls communication between nodes, implementing the distributed consensus system. Once a change to the database has been committed to the Raft log on each node, each node then makes the change to the last subsystem, which is the embedded SQLite database.
Citations
22 sources- rqlite rqlite.io
- GitHub - rqlite/rqlite: The lightweight, fault-tolerant database built on SQLite. Designed to keep your data highly available with minimal effort. · GitHub github.com
- Docs | rqlite rqlite.io
- rqlite/README.md at master · rqlite/rqlite · GitHub github.com
- rqlite at the San Francisco Go Meetup – Philip O'Toole philipotoole.com
- Replicating SQLite using Raft Consensus – Philip O'Toole philipotoole.com
- SQLite Foreign Key Support sqlite.org
- The SQLite R*Tree Module sqlite.org
- Partial Indexes sqlite.org
- Indexes On Expressions sqlite.org
- Database File Format sqlite.org
- Isolation In SQLite sqlite.org
- The Next-Generation Query Planner sqlite.org
- Replicating SQLite with rqlite | Simon Willison’s TILs simonwillison.net
- https://github.com/rqlite/rqlite/blob/master/DOC/DATA_API.md github.com
- https://github.com/rqlite/rqlite/blob/master/DOC/DESIGN.md github.com
- Appropriate Uses For SQLite sqlite.org
- rqlite: replicating SQLite using Raft Consensus - Google Slides google.com
- Temporary Files Used By SQLite sqlite.org
- https://github.com/rqlite/rqlite/commit/852f730065a850a452dbca142a46fa076e3c883b github.com
- https://github.com/rqlite/rqlite/commit/f6078843344d6135f97d5d6613e9a0586ba43c1f github.com
- https://github.com/rqlite/rqlite/commit/f42a3115b652c2657c7459c3890451b1136e4ebc github.com