Skip to content

Commit 6f99fd9

Browse files
committed
first commit
0 parents  commit 6f99fd9

17 files changed

+257
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
.idea/
3+
*.iml
4+
target/

2012-deSouzaMedeiros.pdf

382 KB
Binary file not shown.

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# zookeeper-zab-zh
2+
3+
ZooKeeper zab原子广播协议理论与实践论文中文翻译版
4+
5+
>> 查看[原英文论文](./2012-deSouzaMedeiros.pdf)
6+
7+
>翻译的过程中尽可能的保持原文的直译,如果有晦涩难懂或者翻译不好的地方欢迎大家提Issues👏
8+
>对于一些专有名词,则采取使用原英文形式,以保持其含义的准确性。
9+
10+
## TODO
11+
12+
* TODO<sup>①</sup>、TODO<sup>②</sup> 结合issues对场景进行分析;
13+
* Fast Leader Election 快速选举算法完成其余的流程分析;

ZooKeeper原子广播协议理论与实践.md

+228
Large diffs are not rendered by default.
351 KB
Loading
Loading
334 KB
Loading
Loading
Loading
416 KB
Loading
Loading
Loading

images/Zookeeper zab协议 Phase1.png

72.8 KB
Loading

images/Zookeeper zab协议 Phase2.png

57.7 KB
Loading
139 KB
Loading

images/protocol phases.png

61.5 KB
Loading

pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.github.hutu92</groupId>
8+
<artifactId>zookeeper-zab-zh</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
12+
</project>

0 commit comments

Comments
 (0)