Added logging to help figure failing test up on hudson--TestSplitTransactionOnCluster

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1062017 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-01-21 20:42:11 +00:00
parent 2514a87ad6
commit a06ed3e653
1 changed files with 3 additions and 1 deletions

View File

@ -245,6 +245,8 @@ public class TestSplitTransactionOnCluster {
HRegionServer tableRegionServer = cluster.getRegionServer(tableRegionIndex);
if (metaRegionServer.getServerName().equals(tableRegionServer.getServerName())) {
HRegionServer hrs = getOtherRegionServer(cluster, metaRegionServer);
LOG.info("Moving " + hri.getRegionNameAsString() + " to " +
hrs.getServerName() + "; metaServerIndex=" + metaServerIndex);
admin.move(hri.getEncodedNameAsBytes(), Bytes.toBytes(hrs.getServerName()));
}
// Wait till table region is up on the server that is NOT carrying .META..
@ -252,7 +254,7 @@ public class TestSplitTransactionOnCluster {
tableRegionIndex = cluster.getServerWith(hri.getRegionName());
if (tableRegionIndex != -1 && tableRegionIndex != metaServerIndex) break;
LOG.debug("Waiting on region move off the .META. server; current index " +
tableRegionIndex);
tableRegionIndex + " and metaServerIndex=" + metaServerIndex);
Thread.sleep(100);
}
// Verify for sure table region is not on same server as .META.