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.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({ 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();
|
||||
|
|
|
@ -28,6 +28,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;
|
||||
|
||||
|
@ -462,6 +463,7 @@ public class TestRegionServerMetrics {
|
|||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void testRangeCountMetrics() throws Exception {
|
||||
String tableNameString = "testRangeCountMetrics";
|
||||
final long[] timeranges =
|
||||
|
@ -507,7 +509,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;
|
||||
|
|
Loading…
Reference in New Issue