rqlite is a lightweight, distributed DBMS built on top of SQLite. rqlite uses the Raft protocol to achieve consensus across all the instances of the SQLite databases, ensuring that every change made to the system is made to a quorum of SQLite databases, or none at all.
For a detailed description of much of rqlite functionality, consult the [SQLite entry] (https://dbdb.io/db/sqlite).
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.
Read Uncommitted Serializable Snapshot Isolation
Since rqlite uses SQLite as its storage engine, it offers the same isolation levels as SQLite.
N-ary Storage Model (Row/Record)
Since rqlite uses SQLite as its storage engine, it offers the same storage model as SQLite.
https://github.com/rqlite/rqlite
https://github.com/rqlite/rqlite/tree/master/DOC
Philip O'Toole
2014