码迷,mamicode.com
首页 > 其他好文 > 详细

paxos(chubby) vs zab(Zookeeper)

时间:2015-01-03 02:05:27      阅读:586      评论:0      收藏:0      [点我收藏+]

标签:

参考:

Zookeeper的一致性协议:Zab

Chubby&Zookeeper原理及在分布式环境中的应用

Paxos vs. Viewstamped Replication vs. Zab

Zab vs. Paxos

Zab: High-performance broadcast for primary-backup systems

Chubby:面向松散耦合的分布式系统的锁服务 

Chubby 和Zookeeper 的理解

 

zookeeper 的选主过程使用paxos,数据复制使用Zab(zookeeper atom broadcast).

Zab是为主备系统设计,集群机器越多,写性能会有所降低、读性能得到水平扩展。一致性的前提都有一定的限定条件,一般从Follower直接读取数据,虽不保证最新,但在其应用领域配置、分布式事务等业务上看已经是强一致性了。zookeeper 并不适合需要大量写操作的系统。

 

为啥用Zab 而不是paxos?

从Zookeeper 提供API看,写操作需要先获取Txid,写冲突由业务层重新获取Txid重试,也就是说每个操作都包含隐形事务性,有事务让zookeeper有更多的应用场景。这也就要求同步协议保证因果顺序性。paxos是无法保证多个写之间因果顺序,要实现的话只能串行执行,效率低而不可行。

当然也可基于paxos,通过多个操作,从业务层面上实现zookeeper事务功能,但zab 这么设计要高效很多。

 

具体下面描述更加清楚:

Zab is a different protocol than Paxos, although it shares with it some key aspects, as for example:

  • A leader proposes values to the followers
  • Leaders wait for acknowledgements from a quorum of followers before considering a proposal committed (learned)
  • Proposals include epoch numbers, which are similar to ballot numbers in Paxos

The main conceptual difference between Zab and Paxos is that it is primarily designed for primary-backup systems, like Zookeeper, rather than for state machine replication.

Paxos can be used for primary-backup replication by letting the primary be the leader. The problem with Paxos is that, if a primary concurrentlyproposes multiple state updates and fails, the new primary may apply uncommitted updates in an incorrect order. An example is presented in our DSN 2011 paper (Figure 1). In the example, a replica should only apply the state update B after applying A. The example shows that, using Paxos, a new primary and its follows may apply B after C, reaching an incorrect state that has not been reached by any of the previous primaries.

A workaround to this problem using Paxos is to sequentially agree on state updates: a primary proposes a state update only after it commits all previous state updates. Since there is at most one uncommitted update at a time, a new primary cannot incorrectly reorder updates. This approach, however, results in poor performance.

Zab does not need this workaround. Zab replicas can concurrently agree on the order of multiple state updates without harming correctness. This is achieved by adding one more synchronization phase during recovery compared to Paxos, and by using a different numbering of instances based on zxids.

 

Chubby VS Zookeeper:

技术分享

技术分享

技术分享

技术分享

 

技术分享

zookeeper 比chubby提供更强数据一致性性(因果顺序),性能也会差一些。chubby 没有开源,但从其论文看出,zookeeper 很多设计多从chubby中借鉴的,zookeeper是增强版。

paxos(chubby) vs zab(Zookeeper)

标签:

原文地址:http://www.cnblogs.com/lulu/p/4199056.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!