This is an automated email from the ASF dual-hosted git repository. dlmarion pushed a commit to branch 2.1 in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push: new fa7787cde9 Increased thrift server thread minimum property values (#5468) fa7787cde9 is described below commit fa7787cde941cd90be6855fdc098e0a62b6cb581 Author: Dave Marion <dlmar...@apache.org> AuthorDate: Thu Apr 10 15:25:01 2025 -0400 Increased thrift server thread minimum property values (#5468) Increased thrift server thread minimum property values for CompactionCoordinator and ScanServer to 20 to match the minimums for other server processes. Increased minimum to 4 for the Compactor process. Closes #5459 --- core/src/main/java/org/apache/accumulo/core/conf/Property.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/org/apache/accumulo/core/conf/Property.java b/core/src/main/java/org/apache/accumulo/core/conf/Property.java index 49baeb08a6..f5ee557db2 100644 --- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java +++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java @@ -498,7 +498,7 @@ public enum Property { SSERV_CLIENTPORT("sserver.port.client", "9996", PropertyType.PORT, "The port used for handling client connections on the tablet servers.", "2.1.0"), @Experimental - SSERV_MINTHREADS("sserver.server.threads.minimum", "2", PropertyType.COUNT, + SSERV_MINTHREADS("sserver.server.threads.minimum", "20", PropertyType.COUNT, "The minimum number of threads to use to handle incoming requests.", "2.1.0"), @Experimental SSERV_MINTHREADS_TIMEOUT("sserver.server.threads.timeout", "0s", PropertyType.TIMEDURATION, @@ -1522,7 +1522,7 @@ public enum Property { COMPACTOR_CLIENTPORT("compactor.port.client", "9133", PropertyType.PORT, "The port used for handling client connections on the compactor servers.", "2.1.0"), @Experimental - COMPACTOR_MINTHREADS("compactor.threads.minimum", "1", PropertyType.COUNT, + COMPACTOR_MINTHREADS("compactor.threads.minimum", "4", PropertyType.COUNT, "The minimum number of threads to use to handle incoming requests.", "2.1.0"), @Experimental COMPACTOR_MINTHREADS_TIMEOUT("compactor.threads.timeout", "0s", PropertyType.TIMEDURATION, @@ -1545,7 +1545,7 @@ public enum Property { "The port used for handling Thrift client connections on the compaction coordinator server.", "2.1.0"), @Experimental - COMPACTION_COORDINATOR_MINTHREADS("compaction.coordinator.threads.minimum", "1", + COMPACTION_COORDINATOR_MINTHREADS("compaction.coordinator.threads.minimum", "20", PropertyType.COUNT, "The minimum number of threads to use to handle incoming requests.", "2.1.0"), @Experimental