HBASE-13965 Addendum tries different connector ports if BindException is encountered

This commit is contained in:
tedyu 2015-08-03 16:23:52 -07:00
parent 598cfeb775
commit 931e77d450
1 changed files with 10 additions and 2 deletions

View File

@ -82,9 +82,17 @@ public class TestStochasticBalancerJmxMetrics extends BalancerTestBase {
conf.setFloat("hbase.master.balancer.stochastic.maxMovePercent", 0.75f); conf.setFloat("hbase.master.balancer.stochastic.maxMovePercent", 0.75f);
conf.setFloat("hbase.regions.slop", 0.0f); conf.setFloat("hbase.regions.slop", 0.0f);
conf.set(CoprocessorHost.REGIONSERVER_COPROCESSOR_CONF_KEY, JMXListener.class.getName()); conf.set(CoprocessorHost.REGIONSERVER_COPROCESSOR_CONF_KEY, JMXListener.class.getName());
for (int i = 0; i < 5; i++) {
try {
conf.setInt("regionserver.rmi.registry.port", connectorPort); conf.setInt("regionserver.rmi.registry.port", connectorPort);
UTIL.startMiniCluster(); UTIL.startMiniCluster();
break;
} catch (Exception e) {
connectorPort++;
LOG.debug("Encountered exception when starting cluster. Trying port " + connectorPort, e);
}
}
} }
@AfterClass @AfterClass