2026-01-16 19:01:32 -05:00
2025-12-18 22:24:41 -05:00
2025-12-03 13:55:25 -05:00
2025-10-14 08:59:49 -04:00
2026-01-06 23:16:04 -05:00
2025-10-23 23:08:21 -04:00
2026-01-03 15:12:03 -05:00
2025-09-15 10:54:22 -04:00
2026-01-06 23:16:04 -05:00
2025-09-15 10:54:22 -04:00
2025-08-08 12:29:26 -04:00
2025-10-21 10:04:01 -04:00
2026-01-11 11:30:36 -05:00
2026-01-16 19:01:32 -05:00
2025-08-13 08:34:00 -04:00
2025-07-07 11:21:52 -04:00
2025-12-23 12:14:28 -05:00
2026-01-16 19:01:32 -05:00
2026-01-16 19:01:32 -05:00
2026-01-03 15:57:23 -05:00
2026-01-13 18:22:23 -05:00
2022-11-04 10:18:05 -04:00

rqlite logo

Circle CI AppVeyor Docker Office Hours Slack Google Group

rqlite is a feature-rich, rock-solid, fault-tolerant, distributed relational database built on SQLite. It's lightweight, developer-friendly, and exceptionally easy to operate, offering effortless installation and deployment.

Use rqlite to reliably store your most important data, ensuring it's always available to your applications -- think etcd, but with relational modeling available. Whether you're deploying resilient services in the cloud or reliable applications at the edge, rqlite provides a robust solution for critical data.

Website · Slack

Quick Start

Check out the full Quick Start guide

1. Run a rqlite node:

docker run -p 4001:4001 rqlite/rqlite

2. Create a table and insert a row:

curl -XPOST 'localhost:4001/db/execute?pretty' -H 'Content-Type: application/json' -d '[
     "CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY, name TEXT)",
     "INSERT INTO foo(id, name) VALUES(1, \"fiona\")"
]'

3. Query the data:

curl -G 'localhost:4001/db/query?pretty' --data-urlencode 'q=SELECT * FROM foo'

Learn how to form a multi-node cluster in seconds. and dive into the Developer Guide.

Key features

Core functionality

Easy operations

Developer experience

More questions?

Pronunciation

Common pronunciations of rqlite include "R Q lite" and "ree-qwell-lite".

Description
The lightweight, user-friendly, distributed relational database built on SQLite.
Readme MIT 84 MiB
Languages
Go 91.5%
Python 7.8%
Shell 0.5%
Dockerfile 0.2%