HBASE-24750 : All ExecutorService should use guava ThreadFactoryBuilder
Closes #2196 Signed-off-by: Nick Dimiduk <ndimiduk@apache.org> Signed-off-by: Ted Yu <tyu@apache.org>
This commit is contained in:
parent
485e0d2fa4
commit
0b604d921a
|
@ -32,7 +32,7 @@ import java.util.concurrent.TimeUnit;
|
|||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.hbase.Abortable;
|
||||
import org.apache.hadoop.hbase.errorhandling.ForeignException;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -62,10 +62,9 @@ public class LogRollBackupSubprocedurePool implements Closeable, Abortable {
|
|||
LogRollRegionServerProcedureManager.BACKUP_TIMEOUT_MILLIS_DEFAULT);
|
||||
int threads = conf.getInt(CONCURENT_BACKUP_TASKS_KEY, DEFAULT_CONCURRENT_BACKUP_TASKS);
|
||||
this.name = name;
|
||||
executor =
|
||||
new ThreadPoolExecutor(1, threads, keepAlive, TimeUnit.SECONDS,
|
||||
new LinkedBlockingQueue<>(),
|
||||
Threads.newDaemonThreadFactory("rs(" + name + ")-backup"));
|
||||
executor = new ThreadPoolExecutor(1, threads, keepAlive, TimeUnit.SECONDS,
|
||||
new LinkedBlockingQueue<>(),
|
||||
new ThreadFactoryBuilder().setNameFormat("rs(" + name + ")-backup-pool-%d").build());
|
||||
taskPool = new ExecutorCompletionService<>(executor);
|
||||
}
|
||||
|
||||
|
|
|
@ -52,8 +52,8 @@ import org.apache.hadoop.hbase.ipc.RpcClientFactory;
|
|||
import org.apache.hadoop.hbase.ipc.RpcControllerFactory;
|
||||
import org.apache.hadoop.hbase.security.User;
|
||||
import org.apache.hadoop.hbase.util.ConcurrentMapUtils;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -76,7 +76,8 @@ class AsyncConnectionImpl implements AsyncConnection {
|
|||
|
||||
@VisibleForTesting
|
||||
static final HashedWheelTimer RETRY_TIMER = new HashedWheelTimer(
|
||||
Threads.newDaemonThreadFactory("Async-Client-Retry-Timer"), 10, TimeUnit.MILLISECONDS);
|
||||
new ThreadFactoryBuilder().setNameFormat("Async-Client-Retry-Timer-pool-%d").build(), 10,
|
||||
TimeUnit.MILLISECONDS);
|
||||
|
||||
private static final String RESOLVE_HOSTNAME_ON_FAIL_KEY = "hbase.resolve.hostnames.on.failure";
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import org.apache.hadoop.hbase.HConstants;
|
|||
import org.apache.hadoop.hbase.ServerName;
|
||||
import org.apache.hadoop.hbase.util.Addressing;
|
||||
import org.apache.hadoop.hbase.util.ExceptionUtil;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.hbase.thirdparty.io.netty.bootstrap.Bootstrap;
|
||||
import org.apache.hbase.thirdparty.io.netty.buffer.ByteBufInputStream;
|
||||
import org.apache.hbase.thirdparty.io.netty.channel.ChannelHandlerContext;
|
||||
|
@ -178,8 +178,9 @@ class ClusterStatusListener implements Closeable {
|
|||
@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.CONFIG)
|
||||
class MulticastListener implements Listener {
|
||||
private DatagramChannel channel;
|
||||
private final EventLoopGroup group = new NioEventLoopGroup(
|
||||
1, Threads.newDaemonThreadFactory("hbase-client-clusterStatusListener"));
|
||||
private final EventLoopGroup group = new NioEventLoopGroup(1,
|
||||
new ThreadFactoryBuilder().setNameFormat("hbase-client-clusterStatusListener-pool-%d")
|
||||
.build());
|
||||
|
||||
public MulticastListener() {
|
||||
}
|
||||
|
|
|
@ -41,9 +41,9 @@ import org.apache.hadoop.hbase.security.User;
|
|||
import org.apache.hadoop.hbase.security.UserProvider;
|
||||
import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
|
||||
import org.apache.hadoop.hbase.util.PoolMap;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.io.compress.CompressionCodec;
|
||||
import org.apache.hadoop.ipc.RemoteException;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -91,10 +91,12 @@ public abstract class AbstractRpcClient<T extends RpcConnection> implements RpcC
|
|||
public static final Logger LOG = LoggerFactory.getLogger(AbstractRpcClient.class);
|
||||
|
||||
protected static final HashedWheelTimer WHEEL_TIMER = new HashedWheelTimer(
|
||||
Threads.newDaemonThreadFactory("RpcClient-timer"), 10, TimeUnit.MILLISECONDS);
|
||||
new ThreadFactoryBuilder().setNameFormat("RpcClient-timer-pool-%d").build(), 10,
|
||||
TimeUnit.MILLISECONDS);
|
||||
|
||||
private static final ScheduledExecutorService IDLE_CONN_SWEEPER = Executors
|
||||
.newScheduledThreadPool(1, Threads.newDaemonThreadFactory("Idle-Rpc-Conn-Sweeper"));
|
||||
.newScheduledThreadPool(1,
|
||||
new ThreadFactoryBuilder().setNameFormat("Idle-Rpc-Conn-Sweeper-pool-%d").build());
|
||||
|
||||
protected boolean running = true; // if client runs
|
||||
|
||||
|
|
|
@ -33,8 +33,8 @@ import org.apache.hadoop.hbase.ipc.HBaseRpcController.CancellationCallback;
|
|||
import org.apache.hadoop.hbase.security.NettyHBaseRpcConnectionHeaderHandler;
|
||||
import org.apache.hadoop.hbase.security.NettyHBaseSaslRpcClientHandler;
|
||||
import org.apache.hadoop.hbase.security.SaslChallengeDecoder;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -76,8 +76,9 @@ class NettyRpcConnection extends RpcConnection {
|
|||
|
||||
private static final Logger LOG = LoggerFactory.getLogger(NettyRpcConnection.class);
|
||||
|
||||
private static final ScheduledExecutorService RELOGIN_EXECUTOR =
|
||||
Executors.newSingleThreadScheduledExecutor(Threads.newDaemonThreadFactory("Relogin"));
|
||||
private static final ScheduledExecutorService RELOGIN_EXECUTOR = Executors
|
||||
.newSingleThreadScheduledExecutor(
|
||||
new ThreadFactoryBuilder().setNameFormat("Relogin-pool-%d").build());
|
||||
|
||||
private final NettyRpcClient rpcClient;
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@ import java.util.concurrent.atomic.AtomicInteger;
|
|||
|
||||
import org.apache.hadoop.util.ReflectionUtils;
|
||||
import org.apache.hadoop.util.StringUtils;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -197,75 +198,6 @@ public class Threads {
|
|||
return boundedCachedThreadPool;
|
||||
}
|
||||
|
||||
public static ThreadPoolExecutor getBoundedCachedThreadPool(int maxCachedThread, long timeout,
|
||||
TimeUnit unit, String prefix) {
|
||||
return getBoundedCachedThreadPool(maxCachedThread, timeout, unit,
|
||||
newDaemonThreadFactory(prefix));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a {@link java.util.concurrent.ThreadFactory} that names each created thread uniquely,
|
||||
* with a common prefix.
|
||||
* @param prefix The prefix of every created Thread's name
|
||||
* @return a {@link java.util.concurrent.ThreadFactory} that names threads
|
||||
*/
|
||||
public static ThreadFactory getNamedThreadFactory(final String prefix) {
|
||||
SecurityManager s = System.getSecurityManager();
|
||||
final ThreadGroup threadGroup = (s != null) ? s.getThreadGroup() : Thread.currentThread()
|
||||
.getThreadGroup();
|
||||
|
||||
return new ThreadFactory() {
|
||||
final AtomicInteger threadNumber = new AtomicInteger(1);
|
||||
private final int poolNumber = Threads.poolNumber.getAndIncrement();
|
||||
final ThreadGroup group = threadGroup;
|
||||
|
||||
@Override
|
||||
public Thread newThread(Runnable r) {
|
||||
final String name = prefix + "-pool" + poolNumber + "-t" + threadNumber.getAndIncrement();
|
||||
return new Thread(group, r, name);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Same as {#newDaemonThreadFactory(String, UncaughtExceptionHandler)},
|
||||
* without setting the exception handler.
|
||||
*/
|
||||
public static ThreadFactory newDaemonThreadFactory(final String prefix) {
|
||||
return newDaemonThreadFactory(prefix, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a named {@link ThreadFactory} that just builds daemon threads.
|
||||
* @param prefix name prefix for all threads created from the factory
|
||||
* @param handler unhandles exception handler to set for all threads
|
||||
* @return a thread factory that creates named, daemon threads with
|
||||
* the supplied exception handler and normal priority
|
||||
*/
|
||||
public static ThreadFactory newDaemonThreadFactory(final String prefix,
|
||||
final UncaughtExceptionHandler handler) {
|
||||
final ThreadFactory namedFactory = getNamedThreadFactory(prefix);
|
||||
return new ThreadFactory() {
|
||||
@Override
|
||||
public Thread newThread(Runnable r) {
|
||||
Thread t = namedFactory.newThread(r);
|
||||
if (handler != null) {
|
||||
t.setUncaughtExceptionHandler(handler);
|
||||
} else {
|
||||
t.setUncaughtExceptionHandler(LOGGING_EXCEPTION_HANDLER);
|
||||
}
|
||||
if (!t.isDaemon()) {
|
||||
t.setDaemon(true);
|
||||
}
|
||||
if (t.getPriority() != Thread.NORM_PRIORITY) {
|
||||
t.setPriority(Thread.NORM_PRIORITY);
|
||||
}
|
||||
return t;
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
/** Sets an UncaughtExceptionHandler for the thread which logs the
|
||||
* Exception stack if the thread dies.
|
||||
*/
|
||||
|
@ -273,7 +205,7 @@ public class Threads {
|
|||
t.setUncaughtExceptionHandler(LOGGING_EXCEPTION_HANDLER);
|
||||
}
|
||||
|
||||
private static interface PrintThreadInfoHelper {
|
||||
private interface PrintThreadInfoHelper {
|
||||
|
||||
void printThreadInfo(PrintStream stream, String title);
|
||||
|
||||
|
|
|
@ -34,9 +34,9 @@ import org.apache.hadoop.hbase.client.ConnectionFactory;
|
|||
import org.apache.hadoop.hbase.client.Get;
|
||||
import org.apache.hadoop.hbase.client.Put;
|
||||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.util.Tool;
|
||||
import org.apache.hadoop.util.ToolRunner;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -130,7 +130,7 @@ public class AsyncClientExample extends Configured implements Tool {
|
|||
TableName tableName = TableName.valueOf(args[0]);
|
||||
int numOps = args.length > 1 ? Integer.parseInt(args[1]) : DEFAULT_NUM_OPS;
|
||||
ExecutorService threadPool = Executors.newFixedThreadPool(THREAD_POOL_SIZE,
|
||||
Threads.newDaemonThreadFactory("AsyncClientExample"));
|
||||
new ThreadFactoryBuilder().setNameFormat("AsyncClientExample-pool-%d").build());
|
||||
// We use AsyncTable here so we need to provide a separated thread pool. RawAsyncTable does not
|
||||
// need a thread pool and may have a better performance if you use it correctly as it can save
|
||||
// some context switches. But if you use RawAsyncTable incorrectly, you may have a very bad
|
||||
|
|
|
@ -20,8 +20,8 @@ package org.apache.hadoop.hbase.chaos.policies;
|
|||
|
||||
import org.apache.hadoop.hbase.chaos.actions.Action;
|
||||
import org.apache.hadoop.hbase.chaos.monkies.PolicyBasedChaosMonkey;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.util.StringUtils;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
|
||||
import java.util.concurrent.ExecutionException;
|
||||
import java.util.concurrent.ExecutorService;
|
||||
|
@ -42,7 +42,7 @@ public class TwoConcurrentActionPolicy extends PeriodicPolicy {
|
|||
this.actionsOne = actionsOne;
|
||||
this.actionsTwo = actionsTwo;
|
||||
executor = Executors.newFixedThreadPool(2,
|
||||
Threads.newDaemonThreadFactory("TwoConcurrentAction"));
|
||||
new ThreadFactoryBuilder().setNameFormat("TwoConcurrentAction-pool-%d").build());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -36,6 +36,7 @@ import org.apache.hadoop.hbase.procedure2.util.DelayedUtil.DelayedWithTimeout;
|
|||
import org.apache.hadoop.hbase.procedure2.util.StringUtils;
|
||||
import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -100,8 +101,8 @@ public abstract class RemoteProcedureDispatcher<TEnv, TRemote extends Comparable
|
|||
|
||||
// Create the thread pool that will execute RPCs
|
||||
threadPool = Threads.getBoundedCachedThreadPool(corePoolSize, 60L, TimeUnit.SECONDS,
|
||||
Threads.newDaemonThreadFactory(this.getClass().getSimpleName(),
|
||||
getUncaughtExceptionHandler()));
|
||||
new ThreadFactoryBuilder().setNameFormat(this.getClass().getSimpleName() + "-pool-%d")
|
||||
.setUncaughtExceptionHandler(getUncaughtExceptionHandler()).build());
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ import java.util.concurrent.ThreadPoolExecutor;
|
|||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -60,14 +60,10 @@ public class FifoRpcScheduler extends RpcScheduler {
|
|||
public void start() {
|
||||
LOG.info("Using {} as user call queue; handlerCount={}; maxQueueLength={}",
|
||||
this.getClass().getSimpleName(), handlerCount, maxQueueLength);
|
||||
this.executor = new ThreadPoolExecutor(
|
||||
handlerCount,
|
||||
handlerCount,
|
||||
60,
|
||||
TimeUnit.SECONDS,
|
||||
new ArrayBlockingQueue<>(maxQueueLength),
|
||||
Threads.newDaemonThreadFactory("FifoRpcScheduler.handler"),
|
||||
new ThreadPoolExecutor.CallerRunsPolicy());
|
||||
this.executor = new ThreadPoolExecutor(handlerCount, handlerCount, 60, TimeUnit.SECONDS,
|
||||
new ArrayBlockingQueue<>(maxQueueLength),
|
||||
new ThreadFactoryBuilder().setNameFormat("FifoRpcScheduler.handler-pool-%d").build(),
|
||||
new ThreadPoolExecutor.CallerRunsPolicy());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -25,7 +25,7 @@ import java.util.concurrent.TimeUnit;
|
|||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.apache.yetus.audience.InterfaceStability;
|
||||
import org.slf4j.Logger;
|
||||
|
@ -71,13 +71,14 @@ public class MasterFifoRpcScheduler extends FifoRpcScheduler {
|
|||
this.getClass().getSimpleName(), handlerCount, maxQueueLength, rsReportHandlerCount,
|
||||
rsRsreportMaxQueueLength);
|
||||
this.executor = new ThreadPoolExecutor(handlerCount, handlerCount, 60, TimeUnit.SECONDS,
|
||||
new ArrayBlockingQueue<Runnable>(maxQueueLength),
|
||||
Threads.newDaemonThreadFactory("MasterFifoRpcScheduler.call.handler"),
|
||||
new ThreadPoolExecutor.CallerRunsPolicy());
|
||||
this.rsReportExecutor = new ThreadPoolExecutor(rsReportHandlerCount, rsReportHandlerCount, 60,
|
||||
TimeUnit.SECONDS, new ArrayBlockingQueue<Runnable>(rsRsreportMaxQueueLength),
|
||||
Threads.newDaemonThreadFactory("MasterFifoRpcScheduler.RSReport.handler"),
|
||||
new ThreadPoolExecutor.CallerRunsPolicy());
|
||||
new ArrayBlockingQueue<>(maxQueueLength),
|
||||
new ThreadFactoryBuilder().setNameFormat("MasterFifoRpcScheduler.call.handler-pool-%d")
|
||||
.build(), new ThreadPoolExecutor.CallerRunsPolicy());
|
||||
this.rsReportExecutor =
|
||||
new ThreadPoolExecutor(rsReportHandlerCount, rsReportHandlerCount, 60, TimeUnit.SECONDS,
|
||||
new ArrayBlockingQueue<>(rsRsreportMaxQueueLength),
|
||||
new ThreadFactoryBuilder().setNameFormat("MasterFifoRpcScheduler.RSReport.handler-pool-%d")
|
||||
.build(), new ThreadPoolExecutor.CallerRunsPolicy());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -45,8 +45,8 @@ import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
|
|||
import org.apache.hadoop.hbase.util.ExceptionUtil;
|
||||
import org.apache.hadoop.hbase.util.Pair;
|
||||
import org.apache.hadoop.hbase.util.ReflectionUtils;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.hbase.util.VersionInfo;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.apache.hbase.thirdparty.io.netty.bootstrap.Bootstrap;
|
||||
import org.apache.hbase.thirdparty.io.netty.buffer.Unpooled;
|
||||
|
@ -245,8 +245,9 @@ public class ClusterStatusPublisher extends ScheduledChore {
|
|||
@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.CONFIG)
|
||||
public static class MulticastPublisher implements Publisher {
|
||||
private DatagramChannel channel;
|
||||
private final EventLoopGroup group = new NioEventLoopGroup(
|
||||
1, Threads.newDaemonThreadFactory("hbase-master-clusterStatusPublisher"));
|
||||
private final EventLoopGroup group = new NioEventLoopGroup(1,
|
||||
new ThreadFactoryBuilder().setNameFormat("hbase-master-clusterStatusPublisher-pool-%d")
|
||||
.build());
|
||||
|
||||
public MulticastPublisher() {
|
||||
}
|
||||
|
|
|
@ -68,9 +68,9 @@ import org.apache.hadoop.hbase.util.CommonFSUtils;
|
|||
import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
|
||||
import org.apache.hadoop.hbase.util.FSUtils;
|
||||
import org.apache.hadoop.hbase.util.Pair;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.hbase.wal.WALSplitUtil;
|
||||
import org.apache.hadoop.util.ReflectionUtils;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -679,7 +679,7 @@ public class SplitTableRegionProcedure
|
|||
LOG.info("pid=" + getProcId() + " splitting " + nbFiles + " storefiles, region=" +
|
||||
getParentRegion().getShortNameToLog() + ", threads=" + maxThreads);
|
||||
final ExecutorService threadPool = Executors.newFixedThreadPool(maxThreads,
|
||||
Threads.newDaemonThreadFactory("StoreFileSplitter-%1$d"));
|
||||
new ThreadFactoryBuilder().setNameFormat("StoreFileSplitter-pool-%d").build());
|
||||
final List<Future<Pair<Path, Path>>> futures = new ArrayList<Future<Pair<Path, Path>>>(nbFiles);
|
||||
|
||||
// Split each store file.
|
||||
|
|
|
@ -23,6 +23,7 @@ import java.util.concurrent.TimeUnit;
|
|||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.hbase.conf.ConfigurationObserver;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -50,7 +51,8 @@ public class DirScanPool implements ConfigurationObserver {
|
|||
}
|
||||
|
||||
private static ThreadPoolExecutor initializePool(int size) {
|
||||
return Threads.getBoundedCachedThreadPool(size, 1, TimeUnit.MINUTES, "dir-scan");
|
||||
return Threads.getBoundedCachedThreadPool(size, 1, TimeUnit.MINUTES,
|
||||
new ThreadFactoryBuilder().setNameFormat("dir-scan-pool-%d").build());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -27,7 +27,7 @@ import com.lmax.disruptor.dsl.ProducerType;
|
|||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.hbase.namequeues.request.NamedQueueGetRequest;
|
||||
import org.apache.hadoop.hbase.namequeues.response.NamedQueueGetResponse;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.apache.yetus.audience.InterfaceStability;
|
||||
|
||||
|
@ -64,7 +64,8 @@ public class NamedQueueRecorder {
|
|||
// disruptor initialization with BlockingWaitStrategy
|
||||
this.disruptor = new Disruptor<>(RingBufferEnvelope::new,
|
||||
getEventCount(eventCount),
|
||||
Threads.newDaemonThreadFactory(hostingThreadName + ".slowlog.append"),
|
||||
new ThreadFactoryBuilder().setNameFormat(hostingThreadName + ".slowlog.append-pool-%d")
|
||||
.build(),
|
||||
ProducerType.MULTI,
|
||||
new BlockingWaitStrategy());
|
||||
this.disruptor.setDefaultExceptionHandler(new DisruptorExceptionHandler());
|
||||
|
|
|
@ -31,7 +31,7 @@ import java.util.concurrent.TimeUnit;
|
|||
|
||||
import org.apache.hadoop.hbase.errorhandling.ForeignException;
|
||||
import org.apache.hadoop.hbase.errorhandling.ForeignExceptionDispatcher;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -112,8 +112,9 @@ public class ProcedureCoordinator {
|
|||
public static ThreadPoolExecutor defaultPool(String coordName, int opThreads,
|
||||
long keepAliveMillis) {
|
||||
return new ThreadPoolExecutor(1, opThreads, keepAliveMillis, TimeUnit.MILLISECONDS,
|
||||
new SynchronousQueue<>(),
|
||||
Threads.newDaemonThreadFactory("(" + coordName + ")-proc-coordinator"));
|
||||
new SynchronousQueue<>(),
|
||||
new ThreadFactoryBuilder().setNameFormat("(" + coordName + ")-proc-coordinator-pool-%d")
|
||||
.build());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -27,7 +27,7 @@ import java.util.concurrent.ThreadPoolExecutor;
|
|||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import org.apache.hadoop.hbase.errorhandling.ForeignException;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -86,8 +86,9 @@ public class ProcedureMember implements Closeable {
|
|||
public static ThreadPoolExecutor defaultPool(String memberName, int procThreads,
|
||||
long keepAliveMillis) {
|
||||
return new ThreadPoolExecutor(1, procThreads, keepAliveMillis, TimeUnit.MILLISECONDS,
|
||||
new SynchronousQueue<>(),
|
||||
Threads.newDaemonThreadFactory("member: '" + memberName + "' subprocedure"));
|
||||
new SynchronousQueue<>(),
|
||||
new ThreadFactoryBuilder().setNameFormat("member: '" + memberName + "' subprocedure-pool-%d")
|
||||
.build());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -46,6 +46,7 @@ import org.apache.hadoop.hbase.regionserver.HRegionServer;
|
|||
import org.apache.hadoop.hbase.regionserver.RegionServerServices;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.hbase.zookeeper.ZKWatcher;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.zookeeper.KeeperException;
|
||||
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
|
@ -227,7 +228,7 @@ public class RegionServerFlushTableProcedureManager extends RegionServerProcedur
|
|||
int threads = conf.getInt(CONCURENT_FLUSH_TASKS_KEY, DEFAULT_CONCURRENT_FLUSH_TASKS);
|
||||
this.name = name;
|
||||
executor = Threads.getBoundedCachedThreadPool(threads, keepAlive, TimeUnit.MILLISECONDS,
|
||||
"rs(" + name + ")-flush-proc");
|
||||
new ThreadFactoryBuilder().setNameFormat("rs(" + name + ")-flush-proc-pool-%d").build());
|
||||
taskPool = new ExecutorCompletionService<>(executor);
|
||||
}
|
||||
|
||||
|
|
|
@ -50,6 +50,7 @@ import org.apache.hadoop.hbase.util.ServerRegionReplicaUtil;
|
|||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.ipc.RemoteException;
|
||||
import org.apache.hadoop.util.StringUtils.TraditionalBinaryPrefix;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.htrace.core.TraceScope;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
|
@ -517,8 +518,9 @@ class MemStoreFlusher implements FlushRequester {
|
|||
}
|
||||
|
||||
synchronized void start(UncaughtExceptionHandler eh) {
|
||||
ThreadFactory flusherThreadFactory = Threads.newDaemonThreadFactory(
|
||||
server.getServerName().toShortString() + "-MemStoreFlusher", eh);
|
||||
ThreadFactory flusherThreadFactory = new ThreadFactoryBuilder()
|
||||
.setNameFormat(server.getServerName().toShortString() + "-MemStoreFlusher-pool-%d")
|
||||
.setUncaughtExceptionHandler(eh).build();
|
||||
for (int i = 0; i < flushHandlers.length; i++) {
|
||||
flushHandlers[i] = new FlushHandler("MemStoreFlusher." + i);
|
||||
flusherThreadFactory.newThread(flushHandlers[i]);
|
||||
|
|
|
@ -36,6 +36,7 @@ import org.apache.hadoop.hbase.HBaseInterfaceAudience;
|
|||
import org.apache.hadoop.hbase.TableName;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.hbase.zookeeper.ZKWatcher;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.apache.yetus.audience.InterfaceStability;
|
||||
import org.apache.hadoop.hbase.client.RegionReplicaUtil;
|
||||
|
@ -283,7 +284,7 @@ public class RegionServerSnapshotManager extends RegionServerProcedureManager {
|
|||
int threads = conf.getInt(CONCURENT_SNAPSHOT_TASKS_KEY, DEFAULT_CONCURRENT_SNAPSHOT_TASKS);
|
||||
this.name = name;
|
||||
executor = Threads.getBoundedCachedThreadPool(threads, keepAlive, TimeUnit.MILLISECONDS,
|
||||
"rs(" + name + ")-snapshot");
|
||||
new ThreadFactoryBuilder().setNameFormat("rs(" + name + ")-snapshot-pool-%d").build());
|
||||
taskPool = new ExecutorCompletionService<>(executor);
|
||||
}
|
||||
|
||||
|
|
|
@ -50,7 +50,6 @@ import org.apache.hadoop.hbase.trace.TraceUtil;
|
|||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
import org.apache.hadoop.hbase.util.ClassSize;
|
||||
import org.apache.hadoop.hbase.util.CommonFSUtils;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.hbase.wal.FSHLogProvider;
|
||||
import org.apache.hadoop.hbase.wal.WALEdit;
|
||||
import org.apache.hadoop.hbase.wal.WALKeyImpl;
|
||||
|
@ -242,9 +241,9 @@ public class FSHLog extends AbstractFSWAL<Writer> {
|
|||
// Using BlockingWaitStrategy. Stuff that is going on here takes so long it makes no sense
|
||||
// spinning as other strategies do.
|
||||
this.disruptor = new Disruptor<>(RingBufferTruck::new,
|
||||
getPreallocatedEventCount(),
|
||||
Threads.newDaemonThreadFactory(hostingThreadName + ".append"),
|
||||
ProducerType.MULTI, new BlockingWaitStrategy());
|
||||
getPreallocatedEventCount(),
|
||||
new ThreadFactoryBuilder().setNameFormat(hostingThreadName + ".append-pool-%d").build(),
|
||||
ProducerType.MULTI, new BlockingWaitStrategy());
|
||||
// Advance the ring buffer sequence so that it starts from 1 instead of 0,
|
||||
// because SyncFuture.NOT_DONE = 0.
|
||||
this.disruptor.getRingBuffer().next();
|
||||
|
|
|
@ -21,11 +21,11 @@ package org.apache.hadoop.hbase.security.access;
|
|||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.hbase.TableName;
|
||||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.hbase.zookeeper.ZKListener;
|
||||
import org.apache.hadoop.hbase.zookeeper.ZKUtil;
|
||||
import org.apache.hadoop.hbase.zookeeper.ZKWatcher;
|
||||
import org.apache.hadoop.hbase.zookeeper.ZNodePaths;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.apache.zookeeper.KeeperException;
|
||||
import org.slf4j.Logger;
|
||||
|
@ -69,7 +69,7 @@ public class ZKPermissionWatcher extends ZKListener implements Closeable {
|
|||
String aclZnodeParent = conf.get("zookeeper.znode.acl.parent", ACL_NODE);
|
||||
this.aclZNode = ZNodePaths.joinZNode(watcher.getZNodePaths().baseZNode, aclZnodeParent);
|
||||
executor = Executors.newSingleThreadExecutor(
|
||||
Threads.newDaemonThreadFactory("zk-permission-watcher"));
|
||||
new ThreadFactoryBuilder().setNameFormat("zk-permission-watcher-pool-%d").build());
|
||||
}
|
||||
|
||||
public void start() throws KeeperException {
|
||||
|
|
|
@ -26,7 +26,6 @@ import java.util.Collection;
|
|||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.Callable;
|
||||
import java.util.concurrent.ExecutionException;
|
||||
import java.util.concurrent.ExecutorCompletionService;
|
||||
import java.util.concurrent.ThreadPoolExecutor;
|
||||
|
@ -52,6 +51,7 @@ import org.apache.hadoop.hbase.util.Bytes;
|
|||
import org.apache.hadoop.hbase.util.CommonFSUtils;
|
||||
import org.apache.hadoop.hbase.util.FSTableDescriptors;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -616,7 +616,7 @@ public final class SnapshotManifest {
|
|||
public static ThreadPoolExecutor createExecutor(final Configuration conf, final String name) {
|
||||
int maxThreads = conf.getInt("hbase.snapshot.thread.pool.max", 8);
|
||||
return Threads.getBoundedCachedThreadPool(maxThreads, 30L, TimeUnit.SECONDS,
|
||||
Threads.newDaemonThreadFactory(name));
|
||||
new ThreadFactoryBuilder().setNameFormat(name + "-pool-%d").build());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -32,8 +32,8 @@ import org.apache.hadoop.hbase.HConstants;
|
|||
import org.apache.hadoop.hbase.util.AbstractHBaseTool;
|
||||
import org.apache.hadoop.hbase.util.CommonFSUtils;
|
||||
import org.apache.hadoop.hbase.util.FSUtils;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.hbase.util.hbck.HFileCorruptionChecker;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -108,7 +108,7 @@ public class HFileContentValidator extends AbstractHBaseTool {
|
|||
int availableProcessors = Runtime.getRuntime().availableProcessors();
|
||||
int numThreads = conf.getInt("hfilevalidator.numthreads", availableProcessors);
|
||||
return Executors.newFixedThreadPool(numThreads,
|
||||
Threads.newDaemonThreadFactory("hfile-validator"));
|
||||
new ThreadFactoryBuilder().setNameFormat("hfile-validator-pool-%d").build());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -83,6 +83,7 @@ import org.apache.hadoop.hdfs.protocol.HdfsConstants;
|
|||
import org.apache.hadoop.io.IOUtils;
|
||||
import org.apache.hadoop.ipc.RemoteException;
|
||||
import org.apache.hadoop.util.Progressable;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -1657,7 +1658,7 @@ public final class FSUtils {
|
|||
|
||||
// run in multiple threads
|
||||
final ExecutorService tpe = Executors.newFixedThreadPool(threadPoolSize,
|
||||
Threads.newDaemonThreadFactory("FSRegionQuery"));
|
||||
new ThreadFactoryBuilder().setNameFormat("FSRegionQuery-pool-%d").build());
|
||||
try {
|
||||
// ignore all file status items that are not of interest
|
||||
for (FileStatus regionStatus : statusList) {
|
||||
|
|
|
@ -134,6 +134,7 @@ import org.apache.hadoop.security.UserGroupInformation;
|
|||
import org.apache.hadoop.util.ReflectionUtils;
|
||||
import org.apache.hadoop.util.Tool;
|
||||
import org.apache.hadoop.util.ToolRunner;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.apache.yetus.audience.InterfaceStability;
|
||||
import org.apache.zookeeper.KeeperException;
|
||||
|
@ -347,7 +348,8 @@ public class HBaseFsck extends Configured implements Closeable {
|
|||
|
||||
private static ExecutorService createThreadPool(Configuration conf) {
|
||||
int numThreads = conf.getInt("hbasefsck.numthreads", MAX_NUM_THREADS);
|
||||
return new ScheduledThreadPoolExecutor(numThreads, Threads.newDaemonThreadFactory("hbasefsck"));
|
||||
return new ScheduledThreadPoolExecutor(numThreads,
|
||||
new ThreadFactoryBuilder().setNameFormat("hbasefsck-pool-%d").build());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -38,6 +38,7 @@ import org.apache.hadoop.hbase.client.RegionInfo;
|
|||
import org.apache.hadoop.hbase.client.RegionInfoBuilder;
|
||||
import org.apache.hadoop.hbase.client.TableDescriptor;
|
||||
import org.apache.hadoop.hbase.regionserver.HRegion;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -232,7 +233,7 @@ public abstract class ModifyRegionUtils {
|
|||
"hbase.hregion.open.and.init.threads.max", 16));
|
||||
ThreadPoolExecutor regionOpenAndInitThreadPool = Threads.
|
||||
getBoundedCachedThreadPool(maxThreads, 30L, TimeUnit.SECONDS,
|
||||
Threads.newDaemonThreadFactory(threadNamePrefix));
|
||||
new ThreadFactoryBuilder().setNameFormat(threadNamePrefix + "-pool-%d").build());
|
||||
return regionOpenAndInitThreadPool;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -32,6 +32,7 @@ import org.apache.hadoop.fs.Path;
|
|||
import org.apache.hadoop.hbase.monitoring.MonitoredTask;
|
||||
import org.apache.hadoop.hbase.util.CancelableProgressable;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -76,7 +77,7 @@ abstract class OutputSink {
|
|||
this.controller = controller;
|
||||
this.entryBuffers = entryBuffers;
|
||||
this.closeThreadPool = Threads.getBoundedCachedThreadPool(numThreads, 30L, TimeUnit.SECONDS,
|
||||
Threads.newDaemonThreadFactory("split-log-closeStream-"));
|
||||
new ThreadFactoryBuilder().setNameFormat("split-log-closeStream-pool-%d").build());
|
||||
this.closeCompletionService = new ExecutorCompletionService<>(closeThreadPool);
|
||||
}
|
||||
|
||||
|
|
|
@ -44,9 +44,9 @@ import org.apache.hadoop.hbase.client.Table;
|
|||
import org.apache.hadoop.hbase.client.TableDescriptorBuilder;
|
||||
import org.apache.hadoop.hbase.util.AbstractHBaseTool;
|
||||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.util.StringUtils;
|
||||
import org.apache.hadoop.util.ToolRunner;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -90,8 +90,9 @@ public class AcidGuaranteesTestTool extends AbstractHBaseTool {
|
|||
BlockingQueue<Runnable> workQueue = new LinkedBlockingQueue<Runnable>(
|
||||
maxThreads * HConstants.DEFAULT_HBASE_CLIENT_MAX_TOTAL_TASKS);
|
||||
|
||||
ThreadPoolExecutor tpe = new ThreadPoolExecutor(coreThreads, maxThreads, keepAliveTime,
|
||||
TimeUnit.SECONDS, workQueue, Threads.newDaemonThreadFactory(toString() + "-shared"));
|
||||
ThreadPoolExecutor tpe =
|
||||
new ThreadPoolExecutor(coreThreads, maxThreads, keepAliveTime, TimeUnit.SECONDS, workQueue,
|
||||
new ThreadFactoryBuilder().setNameFormat(toString() + "-shared-pool-%d").build());
|
||||
tpe.allowCoreThreadTimeOut(true);
|
||||
return tpe;
|
||||
}
|
||||
|
|
|
@ -48,7 +48,7 @@ import org.apache.hadoop.hbase.testclassification.ClientTests;
|
|||
import org.apache.hadoop.hbase.testclassification.LargeTests;
|
||||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
import org.apache.hadoop.hbase.util.RetryCounter;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.ClassRule;
|
||||
|
@ -137,8 +137,8 @@ public class TestAsyncTableGetMultiThreaded {
|
|||
LOG.info("====== Test started ======");
|
||||
int numThreads = 7;
|
||||
AtomicBoolean stop = new AtomicBoolean(false);
|
||||
ExecutorService executor =
|
||||
Executors.newFixedThreadPool(numThreads, Threads.newDaemonThreadFactory("TestAsyncGet-"));
|
||||
ExecutorService executor = Executors.newFixedThreadPool(numThreads,
|
||||
new ThreadFactoryBuilder().setNameFormat("TestAsyncGet-pool-%d").build());
|
||||
List<Future<?>> futures = new ArrayList<>();
|
||||
IntStream.range(0, numThreads).forEach(i -> futures.add(executor.submit(() -> {
|
||||
run(stop);
|
||||
|
|
|
@ -42,8 +42,8 @@ import org.apache.hadoop.hbase.client.TableDescriptor;
|
|||
import org.apache.hadoop.hbase.client.TableDescriptorBuilder;
|
||||
import org.apache.hadoop.hbase.testclassification.CoprocessorTests;
|
||||
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.hbase.wal.WALEdit;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.junit.After;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
|
@ -102,8 +102,9 @@ public class TestOpenTableInCoprocessor {
|
|||
int maxThreads = 1;
|
||||
long keepAliveTime = 60;
|
||||
ThreadPoolExecutor pool =
|
||||
new ThreadPoolExecutor(1, maxThreads, keepAliveTime, TimeUnit.SECONDS,
|
||||
new SynchronousQueue<>(), Threads.newDaemonThreadFactory("hbase-table"));
|
||||
new ThreadPoolExecutor(1, maxThreads, keepAliveTime, TimeUnit.SECONDS,
|
||||
new SynchronousQueue<>(),
|
||||
new ThreadFactoryBuilder().setNameFormat("hbase-table-pool-%d").build());
|
||||
pool.allowCoreThreadTimeOut(true);
|
||||
return pool;
|
||||
}
|
||||
|
|
|
@ -19,7 +19,6 @@ package org.apache.hadoop.hbase.master.assignment;
|
|||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import java.lang.Thread.UncaughtExceptionHandler;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.Callable;
|
||||
import java.util.concurrent.ExecutorCompletionService;
|
||||
|
@ -36,6 +35,7 @@ import org.apache.hadoop.hbase.testclassification.MasterTests;
|
|||
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
||||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.junit.After;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.Before;
|
||||
|
@ -63,13 +63,9 @@ public class TestRegionStates {
|
|||
@BeforeClass
|
||||
public static void setUp() throws Exception {
|
||||
threadPool = Threads.getBoundedCachedThreadPool(32, 60L, TimeUnit.SECONDS,
|
||||
Threads.newDaemonThreadFactory("ProcedureDispatcher",
|
||||
new UncaughtExceptionHandler() {
|
||||
@Override
|
||||
public void uncaughtException(Thread t, Throwable e) {
|
||||
LOG.warn("Failed thread " + t.getName(), e);
|
||||
}
|
||||
}));
|
||||
new ThreadFactoryBuilder().setNameFormat("ProcedureDispatcher-pool-%d")
|
||||
.setUncaughtExceptionHandler((t, e) -> LOG.warn("Failed thread " + t.getName(), e))
|
||||
.build());
|
||||
executorService = new ExecutorCompletionService(threadPool);
|
||||
}
|
||||
|
||||
|
|
|
@ -24,19 +24,19 @@ import java.util.List;
|
|||
import java.util.concurrent.Callable;
|
||||
import java.util.concurrent.ExecutionException;
|
||||
import java.util.concurrent.ExecutorCompletionService;
|
||||
import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Executors;
|
||||
import java.util.concurrent.Future;
|
||||
import java.util.concurrent.LinkedBlockingQueue;
|
||||
import java.util.concurrent.ThreadPoolExecutor;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.hbase.Abortable;
|
||||
import org.apache.hadoop.hbase.regionserver.RegionServerServices;
|
||||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.hbase.zookeeper.ZKWatcher;
|
||||
import org.apache.hadoop.hbase.errorhandling.ForeignException;
|
||||
import org.apache.hadoop.hbase.errorhandling.ForeignExceptionDispatcher;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.zookeeper.KeeperException;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -115,19 +115,18 @@ public class SimpleRSProcedureManager extends RegionServerProcedureManager {
|
|||
}
|
||||
}
|
||||
|
||||
public class SimpleSubprocedurePool implements Closeable, Abortable {
|
||||
public static class SimpleSubprocedurePool implements Closeable, Abortable {
|
||||
|
||||
private final ExecutorCompletionService<Void> taskPool;
|
||||
private final ThreadPoolExecutor executor;
|
||||
private final ExecutorService executor;
|
||||
private volatile boolean aborted;
|
||||
private final List<Future<Void>> futures = new ArrayList<>();
|
||||
private final String name;
|
||||
|
||||
public SimpleSubprocedurePool(String name, Configuration conf) {
|
||||
this.name = name;
|
||||
executor = new ThreadPoolExecutor(1, 1, 500,
|
||||
TimeUnit.SECONDS, new LinkedBlockingQueue<>(),
|
||||
Threads.newDaemonThreadFactory("rs(" + name + ")-procedure"));
|
||||
executor = Executors.newSingleThreadExecutor(
|
||||
new ThreadFactoryBuilder().setNameFormat("rs(" + name + ")-procedure-pool-%d").build());
|
||||
taskPool = new ExecutorCompletionService<>(executor);
|
||||
}
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
|
|||
import org.apache.hadoop.hbase.util.JVMClusterUtil.MasterThread;
|
||||
import org.apache.hadoop.hbase.util.JVMClusterUtil.RegionServerThread;
|
||||
import org.apache.hadoop.hbase.util.ManualEnvironmentEdge;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.log4j.Appender;
|
||||
import org.apache.log4j.Layout;
|
||||
import org.apache.log4j.PatternLayout;
|
||||
|
@ -232,8 +232,8 @@ public class TestRegionServerReportForDuty {
|
|||
*/
|
||||
@Test
|
||||
public void testReportForDutyWithRSRpcRetry() throws Exception {
|
||||
ScheduledThreadPoolExecutor scheduledThreadPoolExecutor =
|
||||
new ScheduledThreadPoolExecutor(1, Threads.newDaemonThreadFactory("RSDelayedStart"));
|
||||
ScheduledThreadPoolExecutor scheduledThreadPoolExecutor = new ScheduledThreadPoolExecutor(1,
|
||||
new ThreadFactoryBuilder().setNameFormat("RSDelayedStart-pool-%d").build());
|
||||
|
||||
// Start a master and wait for it to become the active/primary master.
|
||||
// Use a random unique port
|
||||
|
|
|
@ -50,11 +50,11 @@ import org.apache.hadoop.hbase.testclassification.RegionServerTests;
|
|||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
import org.apache.hadoop.hbase.util.CommonFSUtils;
|
||||
import org.apache.hadoop.hbase.util.FutureUtils;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.hbase.wal.WALEdit;
|
||||
import org.apache.hadoop.hbase.wal.WALKey;
|
||||
import org.apache.hadoop.hbase.wal.WALKeyImpl;
|
||||
import org.apache.hadoop.hbase.wal.WALProvider.AsyncWriter;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.ClassRule;
|
||||
|
@ -82,7 +82,8 @@ public class TestAsyncFSWAL extends AbstractTestFSWAL {
|
|||
|
||||
@BeforeClass
|
||||
public static void setUpBeforeClass() throws Exception {
|
||||
GROUP = new NioEventLoopGroup(1, Threads.newDaemonThreadFactory("TestAsyncFSWAL"));
|
||||
GROUP = new NioEventLoopGroup(1,
|
||||
new ThreadFactoryBuilder().setNameFormat("TestAsyncFSWAL-pool-%d").build());
|
||||
CHANNEL_CLASS = NioSocketChannel.class;
|
||||
AbstractTestFSWAL.setUpBeforeClass();
|
||||
}
|
||||
|
|
|
@ -25,9 +25,9 @@ import org.apache.hadoop.hbase.HBaseClassTestRule;
|
|||
import org.apache.hadoop.hbase.HConstants;
|
||||
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
||||
import org.apache.hadoop.hbase.testclassification.RegionServerTests;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.hbase.wal.WAL;
|
||||
import org.apache.hadoop.hbase.wal.WALFactory;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.ClassRule;
|
||||
|
@ -51,7 +51,8 @@ public class TestAsyncWALReplay extends AbstractTestWALReplay {
|
|||
|
||||
@BeforeClass
|
||||
public static void setUpBeforeClass() throws Exception {
|
||||
GROUP = new NioEventLoopGroup(1, Threads.newDaemonThreadFactory("TestAsyncWALReplay"));
|
||||
GROUP = new NioEventLoopGroup(1,
|
||||
new ThreadFactoryBuilder().setNameFormat("TestAsyncWALReplay-pool-%d").build());
|
||||
CHANNEL_CLASS = NioSocketChannel.class;
|
||||
Configuration conf = AbstractTestWALReplay.TEST_UTIL.getConfiguration();
|
||||
conf.set(WALFactory.WAL_PROVIDER, "asyncfs");
|
||||
|
|
|
@ -36,6 +36,7 @@ import org.apache.hadoop.hbase.testclassification.MediumTests;
|
|||
import org.apache.hadoop.hbase.testclassification.MiscTests;
|
||||
import org.apache.hadoop.hbase.util.hbck.HFileCorruptionChecker;
|
||||
import org.apache.hadoop.hbase.util.hbck.HbckTestingUtil;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.Before;
|
||||
import org.junit.BeforeClass;
|
||||
|
@ -64,8 +65,9 @@ public class TestHBaseFsckMOB extends BaseTestHBaseFsck {
|
|||
conf.setInt(HConstants.HBASE_RPC_TIMEOUT_KEY, 8 * REGION_ONLINE_TIMEOUT);
|
||||
TEST_UTIL.startMiniCluster(1);
|
||||
|
||||
tableExecutorService = new ThreadPoolExecutor(1, POOL_SIZE, 60, TimeUnit.SECONDS,
|
||||
new SynchronousQueue<>(), Threads.newDaemonThreadFactory("testhbck"));
|
||||
tableExecutorService =
|
||||
new ThreadPoolExecutor(1, POOL_SIZE, 60, TimeUnit.SECONDS, new SynchronousQueue<>(),
|
||||
new ThreadFactoryBuilder().setNameFormat("testhbck-pool-%d").build());
|
||||
|
||||
hbfsckExecutorService = new ScheduledThreadPoolExecutor(POOL_SIZE);
|
||||
|
||||
|
|
|
@ -32,8 +32,8 @@ import org.apache.hadoop.hbase.CellUtil;
|
|||
import org.apache.hadoop.hbase.client.Table;
|
||||
import org.apache.hadoop.hbase.thrift.generated.TIncrement;
|
||||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.metrics2.util.MBeans;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -150,9 +150,8 @@ public class IncrementCoalescer implements IncrementCoalescerMBean {
|
|||
public IncrementCoalescer(ThriftHBaseServiceHandler hand) {
|
||||
this.handler = hand;
|
||||
LinkedBlockingQueue<Runnable> queue = new LinkedBlockingQueue<>();
|
||||
pool = new ThreadPoolExecutor(CORE_POOL_SIZE, CORE_POOL_SIZE, 50,
|
||||
TimeUnit.MILLISECONDS, queue,
|
||||
Threads.newDaemonThreadFactory("IncrementCoalescer"));
|
||||
pool = new ThreadPoolExecutor(CORE_POOL_SIZE, CORE_POOL_SIZE, 50, TimeUnit.MILLISECONDS, queue,
|
||||
new ThreadFactoryBuilder().setNameFormat("IncrementCoalescer-pool-%d").build());
|
||||
MBeans.register("thrift", "Thrift", this);
|
||||
}
|
||||
|
||||
|
|
|
@ -36,8 +36,8 @@ import org.apache.hadoop.hbase.HConstants;
|
|||
import org.apache.hadoop.hbase.ZooKeeperConnectionException;
|
||||
import org.apache.hadoop.hbase.security.Superusers;
|
||||
import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
|
||||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.apache.zookeeper.KeeperException;
|
||||
import org.apache.zookeeper.WatchedEvent;
|
||||
|
@ -95,8 +95,8 @@ public class ZKWatcher implements Watcher, Abortable, Closeable {
|
|||
// and further prevents deadlocks if the process method itself makes other zookeeper calls.
|
||||
// It is ok to do it in a single thread because the Zookeeper ClientCnxn already serializes the
|
||||
// requests using a single while loop and hence there is no performance degradation.
|
||||
private final ExecutorService zkEventProcessor =
|
||||
Executors.newSingleThreadExecutor(Threads.getNamedThreadFactory("zk-event-processor"));
|
||||
private final ExecutorService zkEventProcessor = Executors.newSingleThreadExecutor(
|
||||
new ThreadFactoryBuilder().setNameFormat("zk-event-processor-pool-%d").build());
|
||||
|
||||
private final Configuration conf;
|
||||
|
||||
|
|
Loading…
Reference in New Issue