HBASE-15348 Disable metrics tests until fixed.

This commit is contained in:
Elliott Clark 2016-02-26 09:04:18 -08:00
parent 8f2bd06019
commit e88d943183
2 changed files with 5 additions and 1 deletions

View File

@ -50,12 +50,14 @@ import org.apache.hadoop.net.DNSToSwitchMapping;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.FixMethodOrder;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runners.MethodSorters;
@Category({ MiscTests.class, MediumTests.class })
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
@Ignore
public class TestStochasticBalancerJmxMetrics extends BalancerTestBase {
private static final Log LOG = LogFactory.getLog(TestStochasticBalancerJmxMetrics.class);
private static HBaseTestingUtility UTIL = new HBaseTestingUtility();

View File

@ -29,6 +29,7 @@ import org.apache.log4j.Level;
import org.apache.log4j.Logger;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
@ -513,6 +514,7 @@ public class TestRegionServerMetrics {
}
@Test
@Ignore
public void testRangeCountMetrics() throws Exception {
String tableNameString = "testRangeCountMetrics";
final long[] timeranges =
@ -558,7 +560,7 @@ public class TestRegionServerMetrics {
dynamicMetricName =
timeRangeMetricName + "_" + timeRangeType + "_" + prior + "-" + timeranges[i];
if (metricsHelper.checkCounterExists(dynamicMetricName, serverSource)) {
long count = metricsHelper.getCounter(dynamicMetricName, serverSource);
long count = metricsHelper.getGaugeLong(dynamicMetricName, serverSource);
if (count > 0) {
timeRangeCountUpdated = true;
break;