github rqlite/rqlite v5.10.0

latest releases: v8.26.2, v8.26.1, v8.26.0...
3 years ago

Please use 5.10.1 which fixes a significant memory leak in the 5.10.0 release.

rqlite is a lightweight, distributed relational database, which uses SQLite as its storage engine. rqlite provides an easy-to-use, fault-tolerant store for critical relational data.

Release 5.10.0, as well as adding some small features, provides major improvements in disk usage. Temporary files are no longer used as scratch storage during the Snapshot and Restore process, and disk-based nodes now restart almost as quickly as memory-based systems. Some new metrics have also been added. See the CHANGELOG for full details on this release.

Getting started

To download and run a single rqlite node, which automatically becomes leader, follow the directions below. It's also very easy to run a rqlite cluster -- you can learn more by checking out the documentation.

If you wish to build rqlite from source, check out this documentation.

Linux

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

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

macOS

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

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

Windows

rqlite can be built for Windows, and compatibility is ensured at all times via AppVeyor. However you may need to build a specific release yourself, though the top-of-tree build is available for download from AppVeyor. Check out the CI build for Windows for more details.

Don't miss a new rqlite release

NewReleases is sending notifications on new releases.