理解Raft日志||Paxos
发布日期:2021-05-07 14:24:32 浏览次数:19 分类:原创文章

本文共 1010 字,大约阅读时间需要 3 分钟。

  • Raft is a consensus algorithm that is designed to be easy to understand.

    It’s equivalent to Paxos in fault-tolerance and performance. The difference is that it’s decomposed into relatively independent subproblems, and it cleanly addresses all major pieces needed for practical systems.

  • What is consensus?

    Consensus is a fundamental problem in fault-tolerant distributed systems.

    Consensus involves multiple servers agreeing on values. Once they reach a decision on a value, that decision is final. Typical consensus algorithms make progress when any majority of their servers is avaiable.

    Consesus protocols are the basis for the state machine replication approach to distributed computing.

  • Paxos is a family of protocols for solving consensus in a network of unreliable or fallible processors.

  • State machine replication or state machine approach is a general method for implementing a fault-tolerant service by replicating servers and coordinating client interactions with server replicas.

  • References

  1. GitBook:
上一篇:将DataFrame作为邮件正文HTML发送 in Python
下一篇:(20210129已解决)Pandas通过某列值包含特定字符串过滤行

发表评论

最新留言

很好
[***.229.124.182]2025年04月05日 10时34分46秒

关于作者

    喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!

推荐文章