paxakos
Rust implementation of Paxos consensus algorithm (by benschulz)
little-raft
The lightest distributed consensus library. Run your own replicated state machine! ❤️ (by andreev-io)
paxakos | little-raft | |
---|---|---|
3 | 7 | |
106 | 421 | |
- | - | |
0.0 | 0.0 | |
almost 2 years ago | about 2 years ago | |
Rust | Rust | |
GNU General Public License v3.0 only | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
paxakos
Posts with mentions or reviews of paxakos.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-05-24.
-
Paxakos: A Flexible Solution to Consensus
Paxakos is a Multi-Paxos implementation that aims to have a simple yet extensible core.
-
Side project: Raft distributed consensus algorithm implementation & CLI visualization in Rust
It's not quite done, but feel free to take a look: https://github.com/benschulz/paxakos/tree/d88c69e4d5158425c78467ccd229c7237eba76c7
little-raft
Posts with mentions or reviews of little-raft.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-10-30.
-
Show /r/rust: Viewstamped Replication for Rust
My perspective is that VSR seems much more easier to grasp than Raft based on reading and contributing to Ilya Andreev's Little Raft. The selection of primary replica ("leader election" in Raft), for example, is dead-simple in VSR (you maintain a deterministic order of nodes and round-robin). Also, VSR seems to do a better job at decoupling the different scenarios at protocol level (backup fell behind, crashed, etc.) whereas in Raft the AppendEntries is a big hammer that does everything. I have very little experience on Paxos so can't really compare it to VSR.
- Show HN: I implemented Raft in Rust in under 1k lines
- Raft Consensus Protocol
- Side Project: Raft distributed consensus algorithm implementation & CLI visualization in Rust
- Show HN: I Made a Raft Implementation and CLI Visualization in Rust
- Side project: Raft distributed consensus algorithm implementation & CLI visualization in Rust
What are some alternatives?
When comparing paxakos and little-raft you can also consider the following projects:
kani - Kani Rust Verifier
riteraft - RiteRaft - A raft framework, for regular people
uppercut - Small and simple actor model implementation.
raft-grpc-example - Example code for how to get hashicorp/raft running with gRPC
overlord - Overlord consensus protocol.
vsr-rs - Viewstamped Replication for Rust
hbbft - An implementation of the paper "Honey Badger of BFT Protocols" in Rust. This is a modular library of consensus.
raft - Golang implementation of the Raft consensus protocol
omnipaxos - OmniPaxos is a distributed log implemented as a Rust library.
politeia-rs - Decred Politeia in Rust
openraft - rust raft with improvements