Return-Path: Delivered-To: apmail-hadoop-hbase-commits-archive@locus.apache.org Received: (qmail 44729 invoked from network); 20 Oct 2008 03:07:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Oct 2008 03:07:16 -0000 Received: (qmail 80041 invoked by uid 500); 20 Oct 2008 03:07:18 -0000 Delivered-To: apmail-hadoop-hbase-commits-archive@hadoop.apache.org Received: (qmail 80019 invoked by uid 500); 20 Oct 2008 03:07:18 -0000 Mailing-List: contact hbase-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hbase-dev@hadoop.apache.org Delivered-To: mailing list hbase-commits@hadoop.apache.org Received: (qmail 80010 invoked by uid 99); 20 Oct 2008 03:07:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Oct 2008 20:07:18 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Mon, 20 Oct 2008 03:06:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 27CAC238893B; Sun, 19 Oct 2008 20:06:55 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r706112 - in /hadoop/hbase/trunk: CHANGES.txt src/test/org/apache/hadoop/hbase/HBaseClusterTestCase.java Date: Mon, 20 Oct 2008 03:06:55 -0000 To: hbase-commits@hadoop.apache.org From: jimk@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081020030655.27CAC238893B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jimk Date: Sun Oct 19 20:06:54 2008 New Revision: 706112 URL: http://svn.apache.org/viewvc?rev=706112&view=rev Log: HBASE-919 Master and Region Server need to provide root region location if they are using HTable With J-D's one line patch, test cases now appear to work and PerformanceEvaluation works as before. Modified: hadoop/hbase/trunk/CHANGES.txt hadoop/hbase/trunk/src/test/org/apache/hadoop/hbase/HBaseClusterTestCase.java Modified: hadoop/hbase/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/CHANGES.txt?rev=706112&r1=706111&r2=706112&view=diff ============================================================================== --- hadoop/hbase/trunk/CHANGES.txt (original) +++ hadoop/hbase/trunk/CHANGES.txt Sun Oct 19 20:06:54 2008 @@ -33,6 +33,8 @@ connection and shut themselves down HBASE-919 Master and Region Server need to provide root region location if they are using HTable + With J-D's one line patch, test cases now appear to work and + PerformanceEvaluation works as before. IMPROVEMENTS HBASE-901 Add a limit to key length, check key and value length on client side Modified: hadoop/hbase/trunk/src/test/org/apache/hadoop/hbase/HBaseClusterTestCase.java URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/src/test/org/apache/hadoop/hbase/HBaseClusterTestCase.java?rev=706112&r1=706111&r2=706112&view=diff ============================================================================== --- hadoop/hbase/trunk/src/test/org/apache/hadoop/hbase/HBaseClusterTestCase.java (original) +++ hadoop/hbase/trunk/src/test/org/apache/hadoop/hbase/HBaseClusterTestCase.java Sun Oct 19 20:06:54 2008 @@ -90,6 +90,9 @@ // start the mini cluster this.cluster = new MiniHBaseCluster(conf, regionServers); // opening the META table ensures that cluster is running + // We need to sleep because we cannot open a HTable when the cluster + // is not ready + Thread.sleep(5000); HTable meta = new HTable(conf, ".META."); }