This is an automated email from the ASF dual-hosted git repository.
dlmarion pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push:
new 28c49be2b4 Bumped general scheduled executor default thread size from
1 to 3. (#5407)
28c49be2b4 is described below
commit 28c49be2b490162647b71ea977d34456bf5c1372
Author: Dave Marion <[email protected]>
AuthorDate: Mon Mar 17 14:43:46 2025 -0400
Bumped general scheduled executor default thread size from 1 to 3. (#5407)
Closes #5405
---
core/src/main/java/org/apache/accumulo/core/conf/Property.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 3be26b2f19..9687d2b7f6 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
@@ -277,7 +277,7 @@ public enum Property {
GENERAL_OPENTELEMETRY_ENABLED("general.opentelemetry.enabled", "false",
PropertyType.BOOLEAN,
"Enables tracing functionality using OpenTelemetry (assuming
OpenTelemetry is configured).",
"2.1.0"),
- GENERAL_THREADPOOL_SIZE("general.server.threadpool.size", "1",
PropertyType.COUNT,
+ GENERAL_THREADPOOL_SIZE("general.server.threadpool.size", "3",
PropertyType.COUNT,
"The number of threads to use for server-internal scheduled tasks.",
"2.1.0"),
// If you update the default type, be sure to update the default used for
initialization failures
// in VolumeManagerImpl