Return-Path: Delivered-To: apmail-hadoop-zookeeper-user-archive@minotaur.apache.org Received: (qmail 14160 invoked from network); 28 Jan 2010 07:36:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 28 Jan 2010 07:36:24 -0000 Received: (qmail 74375 invoked by uid 500); 28 Jan 2010 07:36:24 -0000 Delivered-To: apmail-hadoop-zookeeper-user-archive@hadoop.apache.org Received: (qmail 74321 invoked by uid 500); 28 Jan 2010 07:36:23 -0000 Mailing-List: contact zookeeper-user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: zookeeper-user@hadoop.apache.org Delivered-To: mailing list zookeeper-user@hadoop.apache.org Received: (qmail 74311 invoked by uid 99); 28 Jan 2010 07:36:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jan 2010 07:36:23 +0000 X-ASF-Spam-Status: No, hits=3.4 required=10.0 tests=HTML_MESSAGE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [209.85.219.216] (HELO mail-ew0-f216.google.com) (209.85.219.216) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jan 2010 07:36:13 +0000 Received: by ewy8 with SMTP id 8so412922ewy.29 for ; Wed, 27 Jan 2010 23:35:51 -0800 (PST) MIME-Version: 1.0 Received: by 10.216.87.206 with SMTP id y56mr2264169wee.207.1264664151334; Wed, 27 Jan 2010 23:35:51 -0800 (PST) In-Reply-To: References: Date: Wed, 27 Jan 2010 23:35:51 -0800 Message-ID: Subject: Re: Q about ZK internal: how commit is being remembered From: Henry Robinson To: zookeeper-user@hadoop.apache.org Content-Type: multipart/alternative; boundary=0016e6d97682801ff2047e3491d9 --0016e6d97682801ff2047e3491d9 Content-Type: text/plain; charset=ISO-8859-1 Hi - Note that a machine that has the highest received zxid will necessarily have seen the most recent transaction that was logged by a quorum of followers (the FIFO property of TCP again ensures that all previous messages will have been seen). This is the property that ZAB needs to preserve. The idea is to avoid missing a commit that went to a node that has since failed. I was therefore slightly imprecise in my previous mail - it's possible for only partially-proposed proposals to be committed if the leader that is elected next has seen them. Only when another proposal is committed instead must the original proposal be discarded. I highly recommend Ben Reed's and Flavio Junqueira's LADIS paper on the subject, for those with portal.acm.org access: http://portal.acm.org/citation.cfm?id=1529978 Henry On 27 January 2010 21:52, Qian Ye wrote: > Hi Henry: > > According to your explanation, "*ZAB makes the guarantee that a proposal > which has been logged by > a quorum of followers will eventually be committed*" , however, the source > code of Zookeeper, the FastLeaderElection.java file, shows that, in the > election, the candidates only provide their zxid in the votes, the one with > the max zxid would win the election. I mean, it seems that no check has > been > made to make sure whether the latest proposal has been logged by a quorum > of > servers. > > In this situation, the zookeeper would deliver a proposal, which is known > as > a failed one by the client. Imagine this scenario, a zookeeper cluster with > 5 servers, Leader only receives 1 ack for proposal A, after a timeout, the > client is told that the proposal failed. At this time, all servers restart > due to a power failure. The server have the log of proposal A would be the > leader, however, the client is told the proposal A failed. > > Do I misunderstand this? > > > On Wed, Jan 27, 2010 at 10:37 AM, Henry Robinson > wrote: > > > Qing - > > > > That part of the documentation is slightly confusing. The elected leader > > must have the highest zxid that has been written to disk by a quorum of > > followers. ZAB makes the guarantee that a proposal which has been logged > by > > a quorum of followers will eventually be committed. Conversely, any > > proposals that *don't* get logged by a quorum before the leader sending > > them > > dies will not be committed. One of the ZAB papers covers both these > > situations - making sure proposals are committed or skipped at the right > > moments. > > > > So you get the neat property that leader election can be live in exactly > > the > > case where the ZK cluster is live. If a quorum of peers aren't available > to > > elect the leader, the resulting cluster won't be live anyhow, so it's ok > > for > > leader election to fail. > > > > FLP impossibility isn't actually strictly relevant for ZAB, because FLP > > requires that message reordering is possible (see all the stuff in that > > paper about non-deterministically drawing messages from a potentially > > deliverable set). TCP FIFO channels don't reorder, so provide the extra > > signalling that ZAB requires. > > > > cheers, > > Henry > > > > 2010/1/26 Qing Yan > > > > > Hi, > > > > > > I have question about how zookeeper *remembers* a commit operation. > > > > > > According to > > > > > > > > > http://hadoop.apache.org/zookeeper/docs/r3.2.2/zookeeperInternals.html#sc_summary > > > > > > > > > > > > > > > The leader will issue a COMMIT to all followers as soon as a quorum of > > > followers have ACKed a message. Since messages are ACKed in order, > > COMMITs > > > will be sent by the leader as received by the followers in order. > > > > > > COMMITs are processed in order. Followers deliver a proposals message > > when > > > that proposal is committed. > > > > > > > > > My question is will leader wait for COMMIT to be processed by quorum > > > of followers before consider > > > COMMIT to be success? From the documentation it seems that leader > handles > > > COMMIT asynchronously and > > > don't expect confirmation from followers. In the extreme case, what > > happens > > > if leader issue a COMMIT > > > to all followers and crash immediately before the COMMIT message can go > > out > > > of the network. How the system > > > remembers the COMMIT ever happens? > > > > > > Actually this is related to the leader election process: > > > > > > > > > ZooKeeper messaging doesn't care about the exact method of electing a > > > leader > > > has long as the following holds: > > > > > > - > > > > > > The leader has seen the highest zxid of all the followers. > > > - > > > > > > A quorum of servers have committed to following the leader. > > > > > > Of these two requirements only the first, the highest zxid amoung the > > > followers needs to hold for correct operation. > > > > > > > > > > > > Is there a liveness issue try to find "The leader has seen the highest > > zxid > > > of all the followers"? What if some of the followers (which happens to > > > holding the highest zxid) cannot be contacted(FLP impossible result?) > > > It will be more striaghtforward if COMMIT requires confirmation from a > > > quorum of the followers. But I guess things get > > > optimized according to Zab's FIFO nature...just want to hear some > > > clarification about it. > > > > > > Thanks alot! > > > > > > > > > -- > With Regards! > > Ye, Qian > Made in Zhejiang University > -- Henry Robinson Software Engineer Cloudera 415-994-6679 --0016e6d97682801ff2047e3491d9--