RAFTss
RAFTss refers to a family of distributed consensus algorithms designed to achieve fault tolerance in computer systems. The most well-known is Raft, a consensus algorithm that is designed to be easier to understand than Paxos. Raft was developed by Diego Ongaro and John Ousterhout.
The core idea behind Raft is to divide the problem of distributed consensus into two subproblems: leader
Log replication is handled by the leader sending AppendEntries RPCs to other servers. If a server receives
Raft's design emphasizes understandability and implementability, making it a popular choice for building reliable distributed systems.