Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 59B509646 for ; Tue, 27 Mar 2012 03:58:06 +0000 (UTC) Received: (qmail 95701 invoked by uid 500); 27 Mar 2012 03:58:05 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 95565 invoked by uid 500); 27 Mar 2012 03:58:05 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 95512 invoked by uid 99); 27 Mar 2012 03:58:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Mar 2012 03:58:04 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Mar 2012 03:58:02 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id B128E348956 for ; Tue, 27 Mar 2012 03:57:42 +0000 (UTC) Date: Tue, 27 Mar 2012 03:57:42 +0000 (UTC) From: "Lars Hofhansl (Commented) (JIRA)" To: issues@hbase.apache.org Message-ID: <414358666.21624.1332820662751.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <467826969.20320.1332803547880.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (HBASE-5639) The logic used in waiting for region servers during startup is broken MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-5639?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13239155#comment-13239155 ] Lars Hofhansl commented on HBASE-5639: -------------------------------------- Are you planning to work on this, J-D? Agree with the blocker status. > The logic used in waiting for region servers during startup is broken > --------------------------------------------------------------------- > > Key: HBASE-5639 > URL: https://issues.apache.org/jira/browse/HBASE-5639 > Project: HBase > Issue Type: Bug > Reporter: Jean-Daniel Cryans > Assignee: nkeywal > Priority: Blocker > Fix For: 0.94.0 > > > See the tail of HBASE-4993, which I'll report here: > Me: > {quote} > I think a bug was introduced here. Here's the new waiting logic in waitForRegionServers: > the 'hbase.master.wait.on.regionservers.mintostart' is reached AND > there have been no new region server in for > 'hbase.master.wait.on.regionservers.interval' time > And the code that verifies that: > !(lastCountChange+interval > now && count >= minToStart) > {quote} > Nic: > {quote} > It seems that changing the code to > (count < minToStart || > lastCountChange+interval > now) > would make the code works as documented. > If you have 0 region servers that checked in and you are under the interval, you wait: (true or true) = true. > If you have 0 region servers but you are above the interval, you wait: (true or false) = true. > If you have 1 or more region servers that checked in and you are under the interval, you wait: (false or true) = true. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira