Skip to content

Releases: rqlite/rqlite

v2.2.1

20 Apr 04:42
Compare
Choose a tag to compare

rqlite is a distributed relational database, which uses SQLite as its storage engine. rqlite provides a reliable and distributed store for critical relational data. This release fixes a bug whereby HTTP BasicAuth could not be disabled.

See the CHANGELOG for full details.

Getting started

To download and run a single rqlite node, which automatically becomes leader, follow the directions below.

Linux

To download and start rqlite on Linux, execute the following in a shell.

curl -L  https://github.com/rqlite/rqlite/releases/download/v2.2.1/rqlited-v2.2.1-linux-amd64.tar.gz -o rqlited-v2.2.1-linux-amd64.tar.gz
tar xvfz rqlited-v2.2.1-linux-amd64.tar.gz
cd rqlited-v2.2.1-linux-amd64
./rqlited ~/node.1

OSX

To download and start rqlite on OSX, execute the following in a shell.

curl -L  https://github.com/rqlite/rqlite/releases/download/v2.2.1/rqlited-v2.2.1-darwin-amd64.tar.gz -o rqlited-v2.2.1-darwin-amd64.tar.gz
tar xvfz rqlited-v2.2.1-darwin-amd64.tar.gz
cd rqlited-v2.2.1-darwin-amd64
./rqlited ~/node.1

v2.2.0

19 Apr 01:36
Compare
Choose a tag to compare

rqlite is a distributed relational database, which uses SQLite as its storage engine. rqlite provides a reliable and distributed store for critical relational data. This release supports an HTTPS API, Basic Auth authentication, and user-level permissions. rqlite also now uses semantic versioning.

See the CHANGELOG for full details.

Getting started

To download and run a single rqlite node, which automatically becomes leader, follow the directions below.

Linux

To download and start rqlite on Linux, execute the following in a shell.

curl -L  https://github.com/rqlite/rqlite/releases/download/v2.2.0/rqlited-v2.2.0-linux-amd64.tar.gz -o rqlited-v2.2.0-linux-amd64.tar.gz
tar xvfz rqlited-v2.2.0-linux-amd64.tar.gz
cd rqlited-v2.2.0-linux-amd64
./rqlited ~/node.1

OSX

To download and start rqlite on OSX, execute the following in a shell.

curl -L  https://github.com/rqlite/rqlite/releases/download/v2.2.0/rqlited-v2.2.0-darwin-amd64.tar.gz -o rqlited-v2.2.0-darwin-amd64.tar.gz
tar xvfz rqlited-v2.2.0-darwin-amd64.tar.gz
cd rqlited-v2.2.0-darwin-amd64
./rqlited ~/node.1

v2.1

10 Apr 00:24
Compare
Choose a tag to compare

rqlite is a distributed relational database, which uses SQLite as its storage engine. rqlite provides a reliable and distributed store for critical relational data. This release includes some minor fixes and changes to v2.0.

See the CHANGELOG for full details.

Getting started

To download and run a single rqlite node, which automatically becomes leader, follow the directions below.

Linux

To download and start rqlite on Linux, execute the following in a shell.

curl -L  https://github.com/rqlite/rqlite/releases/download/v2.1/rqlited-v2.1-linux-amd64.tar.gz -o rqlited-v2.1-linux-amd64.tar.gz
tar xvfz rqlited-v2.1-linux-amd64.tar.gz
cd rqlited-v2.1-linux-amd64
./rqlited ~/node.1

OSX

To download and start rqlite on OSX, execute the following in a shell.

curl -L  https://github.com/rqlite/rqlite/releases/download/v2.1/rqlited-v2.1-darwin-amd64.tar.gz -o rqlited-v2.1-darwin-amd64.tar.gz
tar xvfz rqlited-v2.1-darwin-amd64.tar.gz
cd rqlited-v2.1-darwin-amd64
./rqlited ~/node.1

v2.0

09 Apr 21:55
Compare
Choose a tag to compare

rqlite is a replicated SQLite database, providing a reliable and distributed store for critical relational data. This release is a significant upgrade relative to v1.0.

Version 2.0 includes:

  • A new API that is much easier to work with. Thanks to Zac Medico for triggering these changes. Zac has also created a Python library for rqlite.
  • The consensus system has been ported to Hashicorp’s Raft consensus module, which is used in production by many systems.
  • Configurable read-consistency levels, allowing you to trade-off faster queries with consistency guarantees.
  • Support for in-memory SQLite databases.
  • Hot backup support.
  • A better status and diagnostics API.

See the CHANGELOG for full details.

v1.0

10 Apr 02:46
Compare
Choose a tag to compare

v1.0 is a SQLite replication proof-of-concept.