Skip to content

Commit 190cd77

Browse files
committed
update readme
1 parent f871350 commit 190cd77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ See the [raft-core README](./packages/raft-core/README.md) for the full usage gu
122122
## Implementation notes
123123

124124
- **Pre-vote** — nodes run a pre-vote phase before starting a real election, preventing disruptions from nodes rejoining after a partition
125-
- **Joint consensus**cluster membership changes use the joint consensus approach from the Raft paper, allowing safe addition and removal of nodes without downtime
125+
- **Cluster membership changes**uses the single-server-at-a-time approach from the Raft paper, allowing safe addition and removal of one node at a time without downtime
126126
- **Snapshots** — the leader periodically takes snapshots of the application state machine and sends them to lagging followers via `InstallSnapshot` RPC
127127
- **Pluggable storage** — storage is split into four focused interfaces (`MetaStorage`, `LogStorage`, `SnapshotStorage`, `ConfigStorage`) so you can implement exactly the backend you need
128128
- **Pluggable transport** — the `Transport` interface is minimal so you can bring any communication layer

0 commit comments

Comments
 (0)