Hacker News new | ask | show | jobs
by Cardinal7167 1136 days ago
But raft isn’t strongly consistent, it has known liveness issues.

https://decentralizedthoughts.github.io/2020-12-12-raft-live...

4 comments

What does strongly consistent have to do with liveness? If there's a connection it seems pretty indirect.
The article you linked to says if you have PreVote and CheckQuorum it then doesn’t have liveness issues.
That is about availability in the CAP theorem, not consistency though.
Raft is a pretty decent -- not great -- consensus algorithm (IMHO) but it is used because it is easy to understand. If I had to trust one, I would probably go with Multi-Paxos, if you could successfully implement it.