Return-Path: Delivered-To: apmail-hadoop-zookeeper-user-archive@minotaur.apache.org Received: (qmail 78226 invoked from network); 28 Jan 2010 05:52:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 28 Jan 2010 05:52:56 -0000 Received: (qmail 91514 invoked by uid 500); 28 Jan 2010 05:52:56 -0000 Delivered-To: apmail-hadoop-zookeeper-user-archive@hadoop.apache.org Received: (qmail 91414 invoked by uid 500); 28 Jan 2010 05:52:54 -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 91404 invoked by uid 99); 28 Jan 2010 05:52:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jan 2010 05:52:54 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of yeqian.zju@gmail.com designates 209.85.223.194 as permitted sender) Received: from [209.85.223.194] (HELO mail-iw0-f194.google.com) (209.85.223.194) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jan 2010 05:52:45 +0000 Received: by iwn34 with SMTP id 34so145436iwn.21 for ; Wed, 27 Jan 2010 21:52:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=WdBqLCEnFYbXhCg6D/gnpQ1ZqjfXpSNH1mtT/U52o24=; b=nxFv6KumXspLdiexyuX0ANpYO2pDnsKqw04mwOfoBzV8iKCcOqfed25XLS2B6w/SEX bgqFpESoicXqCiJt6bUqjS24Wl3yCBlOseSxUmNJUVC5/mt72JFTTnx+TqPsZBSNWFIl 0vZXqvn8xkEd3foY/tCSvVlXP5rlnzxZohrvc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=YDBo0cJ5EPqP5UWb8vd2S/TV6upFIlnN2cKr1aJCV8uAqm2MmixKQ+Yyw1AyUpKTGh S2m1TYkrnNFvqbq07Q9e6GUMYq7cpVzleGprl66yXkyopyW/zc5jH8gdDxFodpBU+XHI kkNqLQnS7qxYm92PqaXWRIhOH9UkP1YYMitNY= MIME-Version: 1.0 Received: by 10.231.146.74 with SMTP id g10mr4613490ibv.98.1264657944579; Wed, 27 Jan 2010 21:52:24 -0800 (PST) In-Reply-To: References: Date: Thu, 28 Jan 2010 13:52:24 +0800 Message-ID: Subject: Re: Q about ZK internal: how commit is being remembered From: Qian Ye To: zookeeper-user@hadoop.apache.org Content-Type: multipart/alternative; boundary=0016e6408a208c8dea047e331f20 X-Virus-Checked: Checked by ClamAV on apache.org --0016e6408a208c8dea047e331f20 Content-Type: text/plain; charset=UTF-8 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 --0016e6408a208c8dea047e331f20--