From ad075247390a279fcd4f2e983a79873ca26fccfd Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Sat, 30 Dec 2023 13:27:02 -0500 Subject: [PATCH] CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 710724f3..efda60a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ This release adds new control over Raft snapshotting, a key part of the Raft consensus protocol. When the WAL file reaches a certain size (4MB by default, which equals the SQLite default), rqlite will trigger a Raft snapshot. In its default setting this change may reduce disk usage, but may also result in more frequent Raft snapshotting. Most users can ignore this change and carry on as before after upgrading to this release. ### New features - [PR #1530](https://github.com/rqlite/rqlite/pull/1530), [PR #1533](https://github.com/rqlite/rqlite/pull/1533): Support automatically snapshotting when WAL reaches the SQLite default of 4MB. +- [PR #1541](https://github.com/rqlite/rqlite/pull/1541): DNS-based autoclustering supports read-only (non-voting) nodes. ### Implementation changes and bug fixes - [PR #1531](https://github.com/rqlite/rqlite/pull/1531): Check for Raft snapshot condition every 10 seconds by default.