This is an automated email from the ASF dual-hosted git repository.
kturner 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 4c6a6cc968 made rename pool name more generic (#6136)
4c6a6cc968 is described below
commit 4c6a6cc96811ea94fe9bd7701d241753bc08c140
Author: Keith Turner <[email protected]>
AuthorDate: Thu Feb 19 07:56:26 2026 -0800
made rename pool name more generic (#6136)
---
.../java/org/apache/accumulo/core/util/threads/ThreadPoolNames.java | 2 +-
.../manager/src/main/java/org/apache/accumulo/manager/Manager.java | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git
a/core/src/main/java/org/apache/accumulo/core/util/threads/ThreadPoolNames.java
b/core/src/main/java/org/apache/accumulo/core/util/threads/ThreadPoolNames.java
index ed84f6fd9a..f566fb2f03 100644
---
a/core/src/main/java/org/apache/accumulo/core/util/threads/ThreadPoolNames.java
+++
b/core/src/main/java/org/apache/accumulo/core/util/threads/ThreadPoolNames.java
@@ -37,7 +37,7 @@ public enum ThreadPoolNames {
GC_WAL_DELETE_POOL("accumulo.pool.gc.threads.delete.wal"),
GENERAL_SERVER_POOL("accumulo.pool.general.server"),
SERVICE_LOCK_POOL("accumulo.pool.service.lock"),
- IMPORT_TABLE_RENAME_POOL("accumulo.pool.import.table.rename"),
+ FILE_RENAME_POOL("accumulo.pool.file.rename"),
INSTANCE_OPS_COMPACTIONS_FINDER_POOL("accumulo.pool.instance.ops.active.compactions.finder"),
INSTANCE_OPS_SCANS_FINDER_POOL("accumulo.pool.instance.ops.active.scans.finder"),
MANAGER_FATE_POOL_PREFIX("accumulo.pool.manager.fate."),
diff --git
a/server/manager/src/main/java/org/apache/accumulo/manager/Manager.java
b/server/manager/src/main/java/org/apache/accumulo/manager/Manager.java
index f3d69376de..d6320bb8b9 100644
--- a/server/manager/src/main/java/org/apache/accumulo/manager/Manager.java
+++ b/server/manager/src/main/java/org/apache/accumulo/manager/Manager.java
@@ -25,7 +25,7 @@ import static java.util.Collections.emptySortedMap;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static java.util.concurrent.TimeUnit.MINUTES;
import static java.util.concurrent.TimeUnit.SECONDS;
-import static
org.apache.accumulo.core.util.threads.ThreadPoolNames.IMPORT_TABLE_RENAME_POOL;
+import static
org.apache.accumulo.core.util.threads.ThreadPoolNames.FILE_RENAME_POOL;
import java.io.IOException;
import java.net.UnknownHostException;
@@ -484,8 +484,8 @@ public class Manager extends AbstractServer implements
LiveTServerSet.Listener,
String[] args) throws IOException {
super(ServerId.Type.MANAGER, opts, serverContextFactory, args);
int poolSize =
this.getConfiguration().getCount(Property.MANAGER_RENAME_THREADS);
- renamePool = ThreadPools.getServerThreadPools()
-
.getPoolBuilder(IMPORT_TABLE_RENAME_POOL.poolName).numCoreThreads(poolSize).build();
+ renamePool =
ThreadPools.getServerThreadPools().getPoolBuilder(FILE_RENAME_POOL.poolName)
+ .numCoreThreads(poolSize).build();
ServerContext context = super.getContext();
upgradeCoordinator = new UpgradeCoordinator(context);
balanceManager = new BalanceManager();