This is an automated email from the ASF dual-hosted git repository. dlmarion pushed a commit to branch elasticity in repository https://gitbox.apache.org/repos/asf/accumulo-testing.git
commit 12dbdb646aebe2610f737f9d9ba792a51bec4755 Author: Dave Marion <dlmar...@apache.org> AuthorDate: Tue Jan 2 19:07:07 2024 +0000 Modifications to compile against elasticity branch --- conf/accumulo-testing.properties | 2 +- pom.xml | 4 ++-- .../apache/accumulo/testing/randomwalk/concurrent/Config.java | 11 ----------- 3 files changed, 3 insertions(+), 14 deletions(-) diff --git a/conf/accumulo-testing.properties b/conf/accumulo-testing.properties index b2cbb5e..6b8deae 100644 --- a/conf/accumulo-testing.properties +++ b/conf/accumulo-testing.properties @@ -22,7 +22,7 @@ ################### # HDFS root path. Should match 'fs.defaultFS' property in Hadoop's core-site.xml -test.common.hdfs.root=hdfs://localhost:8020 +test.common.hdfs.root=hdfs://localhost:9000 # YARN resource manager hostname. Should match 'yarn.resourcemanager.hostname' property in Hadoop's yarn-site.xml test.common.yarn.resource.manager=localhost # Memory (in MB) given to each container (if running in YARN) diff --git a/pom.xml b/pom.xml index 8cb867e..a3b5488 100644 --- a/pom.xml +++ b/pom.xml @@ -28,11 +28,11 @@ </parent> <groupId>org.apache.accumulo</groupId> <artifactId>accumulo-testing</artifactId> - <version>2.1.0-SNAPSHOT</version> + <version>4.0.0-SNAPSHOT</version> <name>Apache Accumulo Testing</name> <description>Testing tools for Apache Accumulo</description> <properties> - <accumulo.version>3.1.0-SNAPSHOT</accumulo.version> + <accumulo.version>4.0.0-SNAPSHOT</accumulo.version> <!-- prevent introduction of new compiler warnings --> <maven.compiler.failOnWarning>true</maven.compiler.failOnWarning> <maven.compiler.release>11</maven.compiler.release> diff --git a/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java b/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java index ccd3d81..6763bb3 100644 --- a/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java +++ b/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java @@ -57,23 +57,12 @@ public class Config extends Test { final Property TSERV_READ_AHEAD_MAXCONCURRENT_deprecated = Property.TSERV_SCAN_EXECUTORS_DEFAULT_THREADS; - @SuppressWarnings("deprecation") - final Property TSERV_COMPACTION_SERVICE_DEFAULT_MAX_OPEN_deprecated = - Property.TSERV_COMPACTION_SERVICE_DEFAULT_MAX_OPEN; - - @SuppressWarnings("deprecation") - final Property TSERV_COMPACTION_SERVICE_DEFAULT_EXECUTORS_deprecated = - Property.TSERV_COMPACTION_SERVICE_DEFAULT_EXECUTORS; - // @formatter:off final Setting[] settings = { s(Property.TSERV_BLOOM_LOAD_MAXCONCURRENT, 1, 10), s(Property.TSERV_DATACACHE_SIZE, 0, 1000000000L), s(Property.TSERV_INDEXCACHE_SIZE, 0, 1000000000L), s(Property.TSERV_CLIENT_TIMEOUT, 100, 10000), - s(TSERV_COMPACTION_SERVICE_DEFAULT_EXECUTORS_deprecated, 1, 10), - s(Property.TSERV_MAJC_DELAY, 100, 10000), - s(TSERV_COMPACTION_SERVICE_DEFAULT_MAX_OPEN_deprecated, 3, 100), s(Property.TSERV_MINC_MAXCONCURRENT, 1, 10), s(Property.TSERV_DEFAULT_BLOCKSIZE, 100000, 10000000L), s(Property.TSERV_MAX_IDLE, 10000, 500 * 1000),