Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EFDA49D13 for ; Tue, 27 Mar 2012 20:40:28 +0000 (UTC) Received: (qmail 18290 invoked by uid 500); 27 Mar 2012 20:40:28 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 18259 invoked by uid 500); 27 Mar 2012 20:40:28 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 18251 invoked by uid 99); 27 Mar 2012 20:40:28 -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 20:40:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Mar 2012 20:40:27 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 92AAA2388A3D for ; Tue, 27 Mar 2012 20:40:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1306011 - in /hbase/branches/0.94: CHANGES.txt src/main/java/org/apache/hadoop/hbase/master/ServerManager.java Date: Tue, 27 Mar 2012 20:40:07 -0000 To: commits@hbase.apache.org From: larsh@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120327204007.92AAA2388A3D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: larsh Date: Tue Mar 27 20:40:07 2012 New Revision: 1306011 URL: http://svn.apache.org/viewvc?rev=1306011&view=rev Log: HBASE-5639 The logic used in waiting for region servers during startup is broken (J-D and NKeyval) Modified: hbase/branches/0.94/CHANGES.txt hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/master/ServerManager.java Modified: hbase/branches/0.94/CHANGES.txt URL: http://svn.apache.org/viewvc/hbase/branches/0.94/CHANGES.txt?rev=1306011&r1=1306010&r2=1306011&view=diff ============================================================================== --- hbase/branches/0.94/CHANGES.txt (original) +++ hbase/branches/0.94/CHANGES.txt Tue Mar 27 20:40:07 2012 @@ -1,6 +1,6 @@ HBase Change Log -Release 0.94.0 - 3/26/2012 +Release 0.94.0 - 3/27/2012 Sub-task [HBASE-4343] - Get the TestAcidGuarantee unit test to fail consistently @@ -185,7 +185,7 @@ Improvement [HBASE-1744] - Thrift server to match the new java api. [HBASE-2418] - add support for ZooKeeper authentication [HBASE-3373] - Allow regions to be load-balanced by table - [HBASE-3433] - Remove the KV copy of every KV in Scan; introduced by HBASE-3232 (why doesn't keyonlyfilter make copies rather than mutate -- HBASE-3211)? + [HBASE-3433] - Remove the KV copy of every KV in Scan; introduced by HBASE-3232 [HBASE-3512] - Coprocessors: Shell support for listing currently loaded coprocessor set [HBASE-3565] - Add metrics to keep track of slow HLog appends [HBASE-3763] - Add Bloom Block Index Support @@ -319,7 +319,6 @@ New Feature [HBASE-3856] - Build a tree structure data block index inside of the HFile [HBASE-4102] - atomicAppend: A put that appends to the latest version of a cell; i.e. reads current value then adds the bytes offered by the client to the tail and writes out a new entry [HBASE-4219] - Add Per-Column Family Metrics - [HBASE-4256] - Intra-row scanning (part deux) [HBASE-4460] - Support running an embedded ThriftServer within a RegionServer [HBASE-4536] - Allow CF to retain deleted rows [HBASE-4608] - HLog Compression @@ -334,6 +333,7 @@ New Feature Task + [HBASE-4256] - Intra-row scanning (part deux) [HBASE-4429] - Provide synchronous balanceSwitch() [HBASE-4611] - Add support for Phabricator/Differential as an alternative code review tool [HBASE-4712] - Document rules for writing tests Modified: hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/master/ServerManager.java URL: http://svn.apache.org/viewvc/hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/master/ServerManager.java?rev=1306011&r1=1306010&r2=1306011&view=diff ============================================================================== --- hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/master/ServerManager.java (original) +++ hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/master/ServerManager.java Tue Mar 27 20:40:07 2012 @@ -585,7 +585,7 @@ public class ServerManager { !this.master.isStopped() && slept < timeout && count < maxToStart && - !(lastCountChange+interval > now && count >= minToStart) + (lastCountChange+interval > now || count < minToStart) ){ // Log some info at every interval time or if there is a change