HBASE-15348 Disable metrics tests until fixed.
This commit is contained in:
parent
e28b01be50
commit
e0d7e0eb3b
|
@ -49,12 +49,14 @@ import org.apache.hadoop.net.DNSToSwitchMapping;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
import org.junit.FixMethodOrder;
|
import org.junit.FixMethodOrder;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.experimental.categories.Category;
|
import org.junit.experimental.categories.Category;
|
||||||
import org.junit.runners.MethodSorters;
|
import org.junit.runners.MethodSorters;
|
||||||
|
|
||||||
@Category({ MediumTests.class })
|
@Category({ MediumTests.class })
|
||||||
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
||||||
|
@Ignore
|
||||||
public class TestStochasticBalancerJmxMetrics extends BalancerTestBase {
|
public class TestStochasticBalancerJmxMetrics extends BalancerTestBase {
|
||||||
private static final Log LOG = LogFactory.getLog(TestStochasticBalancerJmxMetrics.class);
|
private static final Log LOG = LogFactory.getLog(TestStochasticBalancerJmxMetrics.class);
|
||||||
private static HBaseTestingUtility UTIL = new HBaseTestingUtility();
|
private static HBaseTestingUtility UTIL = new HBaseTestingUtility();
|
||||||
|
|
|
@ -28,6 +28,7 @@ import org.apache.log4j.Level;
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.experimental.categories.Category;
|
import org.junit.experimental.categories.Category;
|
||||||
|
|
||||||
|
@ -462,6 +463,7 @@ public class TestRegionServerMetrics {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@Ignore
|
||||||
public void testRangeCountMetrics() throws Exception {
|
public void testRangeCountMetrics() throws Exception {
|
||||||
String tableNameString = "testRangeCountMetrics";
|
String tableNameString = "testRangeCountMetrics";
|
||||||
final long[] timeranges =
|
final long[] timeranges =
|
||||||
|
@ -507,7 +509,7 @@ public class TestRegionServerMetrics {
|
||||||
dynamicMetricName =
|
dynamicMetricName =
|
||||||
timeRangeMetricName + "_" + timeRangeType + "_" + prior + "-" + timeranges[i];
|
timeRangeMetricName + "_" + timeRangeType + "_" + prior + "-" + timeranges[i];
|
||||||
if (metricsHelper.checkCounterExists(dynamicMetricName, serverSource)) {
|
if (metricsHelper.checkCounterExists(dynamicMetricName, serverSource)) {
|
||||||
long count = metricsHelper.getCounter(dynamicMetricName, serverSource);
|
long count = metricsHelper.getGaugeLong(dynamicMetricName, serverSource);
|
||||||
if (count > 0) {
|
if (count > 0) {
|
||||||
timeRangeCountUpdated = true;
|
timeRangeCountUpdated = true;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue