https://github.com/Trekkiii/paxos_raft_protocol
分布式一致性协议相关论文及中文译文,涵盖Paxos、Raft、Zab
https://github.com/Trekkiii/paxos_raft_protocol
atomic-broadcast-protocol paxos raft zab zookeeper
Last synced: 6 months ago
JSON representation
分布式一致性协议相关论文及中文译文,涵盖Paxos、Raft、Zab
- Host: GitHub
- URL: https://github.com/Trekkiii/paxos_raft_protocol
- Owner: Trekkiii
- Created: 2018-06-11T08:23:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-14T10:26:24.000Z (over 6 years ago)
- Last Synced: 2024-11-13T04:56:33.427Z (11 months ago)
- Topics: atomic-broadcast-protocol, paxos, raft, zab, zookeeper
- Homepage:
- Size: 6.16 MB
- Stars: 337
- Watchers: 16
- Forks: 83
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pasox_zab_protocol
分布式一致性协议相关论文及中文译文,涵盖Paxos、Raft、Zab。
## Paxos
### 论文
Leslie Lamport(Paxos之父)论文《The Part-Time Parliament》、《Paxos Made Simple》。
#### The-Part-Time-Parliament
[>> 译文](paxos/The-Part-Time-Parliament_zh.pdf)
[>> 原文](paxos/The-Part-Time-Parliament.pdf)
#### Paxos-Made-Simple
[>> 译文](paxos/Paxos-Made-Simple_zh.pdf)
[>> 原文](paxos/Paxos-Made-Simple.pdf)
### Diego Ongaro
作者:John Ousterhout(斯坦福大学教授) 和Diego Ongaro(斯坦福大学获得博士学位,Raft算法发明人)
[>> 译文](paxos/paxos_zh.pptx)
[>> 原文](paxos/paxos.pptx)
该 PPT 深入分析了 Paxos 的设计原理,并以日志复制同步(Replicated Logs)为背景,详细介绍如何使用 Paxos 协议实现日志复制同步系统。
这也是我所遇到的讲解 Paxos 最为详尽的一份不可多得的资料。
如果大家对 PPT 里的内容不是很理解,可以订阅我的课程,对 PPT 的每一页都做了详细的讲解,并总结了算法实现概述。[详解 Paxos 分布式一致性协议,从零实现分布式日志同步复制(Replicated Logs)](https://gitbook.cn/gitchat/activity/5bb038b45828f008f1d73fd6)
## Raft
作者:John Ousterhout(斯坦福大学教授) 和Diego Ongaro(斯坦福大学获得博士学位,Raft算法发明人)
[>> 译文](raft/raft_zh.pptx)
[>> 原文](raft/raft.pptx)
[>> Raft协议详解](raft/raft.md)
[>> Raft一致性算法论文译文](https://github.com/archessay/raft-zh_cn/blob/master/raft-zh_cn.md)