Skip to content

Commit

Permalink
Increase tserv_maxmem for FileMetadataIT, enable tests (apache#4022)
Browse files Browse the repository at this point in the history
Increased tserver ingest memory buffer for FileMetadataIT, enabed
SummaryIT and FileMetadataIT tests that were disabled.

Fixes apache#4021
  • Loading branch information
dlmarion authored Dec 8, 2023
1 parent 5c2e1e8 commit ce7c8c8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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);
Expand Down Expand Up @@ -352,7 +352,6 @@ public void splitsRangeTest() throws Exception {
}

@Test
@Disabled // ELASTICITY_TODO
public void splitsWithExistingRangesTest() throws Exception {
ServerContext ctx = getCluster().getServerContext();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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()) {
Expand Down

0 comments on commit ce7c8c8

Please sign in to comment.