Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Jay <BusyJay@users.noreply.github.com>
Signed-off-by: tison <wander4096@gmail.com>
  • Loading branch information
tisonkun and BusyJay committed Oct 9, 2023
1 parent d3ec8c6 commit 536a59b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ When building a distributed system one principal goal is often to build in *faul

Distributed Consensus Algorithms often take the form of a replicated state machine and log. Each state machine accepts inputs from its log, and represents the value(s) to be replicated, for example, a hash table. They allow a collection of machines to work as a coherent group that can survive the failures of some of its members.

Two well known Distributed Consensus Algorithms are Paxos and Raft. Paxos is used in systems like [Chubby](http://research.google.com/archive/chubby.html) by Google, and Raft is used in things like [`tikv`](https://github.com/tikv/tikv) or [`etcd`](https://github.com/etcd-io/raft). Raft is generally seen as a more understandable and simpler to implement than Paxos.
Two well known Distributed Consensus Algorithms are Paxos and Raft. Paxos is used in systems like [Chubby](http://research.google.com/archive/chubby.html) by Google, and Raft is used in things like [`tikv`](https://github.com/tikv/tikv) or [`etcd`](https://github.com/etcd-io/etcd). Raft is generally seen as a more understandable and simpler to implement than Paxos.

## Design

Expand Down Expand Up @@ -92,7 +92,7 @@ This will report relative increases or decreased for each benchmark.

## Acknowledgments

Thanks [etcd](https://github.com/etcd-io/etcd) for providing the amazing Go implementation!
Thanks [etcd](https://github.com/etcd-io/raft) for providing the amazing Go implementation!

## Projects using the Raft crate

Expand Down

0 comments on commit 536a59b

Please sign in to comment.