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.


git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@706112 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jim Kellerman 2008-10-20 03:06:54 +00:00
parent a3b452e9b0
commit 5e3815484c
2 changed files with 5 additions and 0 deletions

View File

@ -33,6 +33,8 @@ Release 0.19.0 - Unreleased
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

View File

@ -90,6 +90,9 @@ public abstract class HBaseClusterTestCase extends HBaseTestCase {
// 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.");
}