HBASE-19808 Reenable TestMultiParallel
This commit is contained in:
parent
8a8be33c71
commit
a3c98b2dd8
|
@ -58,13 +58,11 @@ import org.junit.AfterClass;
|
|||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.experimental.categories.Category;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
@Ignore // Depends on Master being able to host regions. Needs fixing.
|
||||
@Category({MediumTests.class, FlakeyTests.class})
|
||||
public class TestMultiParallel {
|
||||
private static final Logger LOG = LoggerFactory.getLogger(TestMultiParallel.class);
|
||||
|
@ -90,7 +88,9 @@ public class TestMultiParallel {
|
|||
UTIL.getConfiguration().set(HConstants.RPC_CODEC_CONF_KEY,
|
||||
KeyValueCodec.class.getCanonicalName());
|
||||
UTIL.getConfiguration().setBoolean(LoadBalancer.TABLES_ON_MASTER, true);
|
||||
UTIL.getConfiguration().setBoolean(LoadBalancer.SYSTEM_TABLES_ON_MASTER, true);
|
||||
// We used to ask for system tables on Master exclusively but not needed by test and doesn't
|
||||
// work anyways -- so commented out.
|
||||
// UTIL.getConfiguration().setBoolean(LoadBalancer.SYSTEM_TABLES_ON_MASTER, true);
|
||||
UTIL.getConfiguration()
|
||||
.set(CoprocessorHost.MASTER_COPROCESSOR_CONF_KEY, MyMasterObserver.class.getName());
|
||||
UTIL.startMiniCluster(slaves);
|
||||
|
|
|
@ -105,7 +105,7 @@ public class TestRegionServerReadRequestMetrics {
|
|||
public static void setUpOnce() throws Exception {
|
||||
// Default starts one regionserver only.
|
||||
TEST_UTIL.getConfiguration().setBoolean(LoadBalancer.TABLES_ON_MASTER, true);
|
||||
TEST_UTIL.getConfiguration().setBoolean(LoadBalancer.SYSTEM_TABLES_ON_MASTER, true);
|
||||
// TEST_UTIL.getConfiguration().setBoolean(LoadBalancer.SYSTEM_TABLES_ON_MASTER, true);
|
||||
TEST_UTIL.startMiniCluster();
|
||||
admin = TEST_UTIL.getAdmin();
|
||||
serverNames = admin.getClusterMetrics(EnumSet.of(Option.LIVE_SERVERS))
|
||||
|
@ -326,6 +326,7 @@ public class TestRegionServerReadRequestMetrics {
|
|||
testReadRequests(resultCount, 1, 0);
|
||||
}
|
||||
|
||||
@Ignore // HBASE-19785
|
||||
@Test
|
||||
public void testReadRequestsCountWithFilter() throws Exception {
|
||||
int resultCount;
|
||||
|
@ -372,6 +373,7 @@ public class TestRegionServerReadRequestMetrics {
|
|||
// testReadRequests(resultCount, 0, 1);
|
||||
}
|
||||
|
||||
@Ignore // HBASE-19785
|
||||
@Test
|
||||
public void testReadRequestsCountWithDeletedRow() throws Exception {
|
||||
try {
|
||||
|
@ -409,6 +411,7 @@ public class TestRegionServerReadRequestMetrics {
|
|||
}
|
||||
}
|
||||
|
||||
@Ignore // See HBASE-19785
|
||||
@Test
|
||||
public void testReadRequestsWithCoprocessor() throws Exception {
|
||||
TableName tableName = TableName.valueOf("testReadRequestsWithCoprocessor");
|
||||
|
|
Loading…
Reference in New Issue