diff --git a/test/src/main/java/org/apache/accumulo/test/functional/FileMetadataIT.java b/test/src/main/java/org/apache/accumulo/test/functional/FileMetadataIT.java index bf739d5e720..d64ecb6e35d 100644 --- a/test/src/main/java/org/apache/accumulo/test/functional/FileMetadataIT.java +++ b/test/src/main/java/org/apache/accumulo/test/functional/FileMetadataIT.java @@ -57,7 +57,6 @@ import org.apache.accumulo.test.VerifyIngest.VerifyParams; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.io.Text; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; @@ -74,6 +73,7 @@ protected Duration defaultTimeout() { @Override public void configureMiniCluster(MiniAccumuloConfigImpl cfg, Configuration hadoopCoreSite) { cfg.setProperty(Property.INSTANCE_ZK_TIMEOUT, "15s"); + cfg.setProperty(Property.TSERV_MAXMEM, "80M"); } // private static final Logger log = LoggerFactory.getLogger(FileMetadataIT.class); @@ -352,7 +352,6 @@ public void splitsRangeTest() throws Exception { } @Test - @Disabled // ELASTICITY_TODO public void splitsWithExistingRangesTest() throws Exception { ServerContext ctx = getCluster().getServerContext(); diff --git a/test/src/main/java/org/apache/accumulo/test/functional/SummaryIT.java b/test/src/main/java/org/apache/accumulo/test/functional/SummaryIT.java index f457b978d4d..cee7832f267 100644 --- a/test/src/main/java/org/apache/accumulo/test/functional/SummaryIT.java +++ b/test/src/main/java/org/apache/accumulo/test/functional/SummaryIT.java @@ -92,7 +92,6 @@ import org.apache.hadoop.io.Text; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; public class SummaryIT extends SharedMiniClusterBase { @@ -152,7 +151,6 @@ private void addSplits(final String table, AccumuloClient c, String... splits) } @Test - @Disabled // ELASTICITY_TODO public void basicSummaryTest() throws Exception { final String table = getUniqueNames(1)[0]; try (AccumuloClient c = Accumulo.newClient().from(getClientProps()).build()) {