This is an automated email from the ASF dual-hosted git repository.
ddanielr 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 e5370d1d5c fixes tserver conditional update thread pool config (#5194)
e5370d1d5c is described below
commit e5370d1d5cd436d86170d16b0e8c0986d3275e15
Author: Keith Turner <[email protected]>
AuthorDate: Wed Dec 18 10:17:37 2024 -0500
fixes tserver conditional update thread pool config (#5194)
When creating the thread pool for metadata conditional update in the
tablet server the config for user tables was used.
---
.../java/org/apache/accumulo/tserver/TabletServerResourceManager.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/server/tserver/src/main/java/org/apache/accumulo/tserver/TabletServerResourceManager.java
b/server/tserver/src/main/java/org/apache/accumulo/tserver/TabletServerResourceManager.java
index f09165c450..04742d810b 100644
---
a/server/tserver/src/main/java/org/apache/accumulo/tserver/TabletServerResourceManager.java
+++
b/server/tserver/src/main/java/org/apache/accumulo/tserver/TabletServerResourceManager.java
@@ -401,9 +401,9 @@ public class TabletServerResourceManager {
TSERVER_CONDITIONAL_UPDATE_ROOT_POOL.poolName, rootConditionalPool);
var metaConditionalPool =
ThreadPools.getServerThreadPools().createExecutorService(acuConf,
- Property.TSERV_CONDITIONAL_UPDATE_THREADS_USER, enableMetrics);
+ Property.TSERV_CONDITIONAL_UPDATE_THREADS_META, enableMetrics);
modifyThreadPoolSizesAtRuntime(
- () ->
context.getConfiguration().getCount(Property.TSERV_CONDITIONAL_UPDATE_THREADS_USER),
+ () ->
context.getConfiguration().getCount(Property.TSERV_CONDITIONAL_UPDATE_THREADS_META),
TSERVER_CONDITIONAL_UPDATE_META_POOL.poolName, metaConditionalPool);
var userConditionalPool =
ThreadPools.getServerThreadPools().createExecutorService(acuConf,