blob: 70ceea6dfb6052fae5e2040d00d3ed64da98422f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.geode.internal.logging;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static java.util.concurrent.TimeUnit.SECONDS;
import static org.apache.geode.internal.lang.SystemPropertyHelper.GEMFIRE_PREFIX;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.RejectedExecutionException;
import java.util.concurrent.RejectedExecutionHandler;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.SynchronousQueue;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import org.apache.geode.distributed.internal.FunctionExecutionPooledExecutor;
import org.apache.geode.distributed.internal.OverflowQueueWithDMStats;
import org.apache.geode.distributed.internal.PoolStatHelper;
import org.apache.geode.distributed.internal.PooledExecutorWithDMStats;
import org.apache.geode.distributed.internal.QueueStatHelper;
import org.apache.geode.distributed.internal.SerialQueuedExecutorWithDMStats;
import org.apache.geode.internal.ScheduledThreadPoolExecutorWithKeepAlive;
import org.apache.geode.internal.monitoring.ThreadsMonitoring;
import org.apache.geode.logging.internal.executors.LoggingExecutors;
import org.apache.geode.logging.internal.executors.LoggingThreadFactory;
import org.apache.geode.logging.internal.executors.LoggingThreadFactory.CommandWrapper;
import org.apache.geode.logging.internal.executors.LoggingThreadFactory.ThreadInitializer;
/**
* Utility class that creates instances of ExecutorService
* whose threads will always log uncaught exceptions.
*/
public class CoreLoggingExecutors {
public static ExecutorService newSerialThreadPool(String threadName,
ThreadInitializer threadInitializer, CommandWrapper commandWrapper,
PoolStatHelper stats, ThreadsMonitoring threadsMonitoring, BlockingQueue<Runnable> feed) {
ThreadFactory threadFactory =
new LoggingThreadFactory(threadName, threadInitializer, commandWrapper);
return new SerialQueuedExecutorWithDMStats(feed, stats, threadFactory, threadsMonitoring);
}
public static ExecutorService newSerialThreadPoolWithFeedStatistics(String threadName,
ThreadInitializer threadInitializer, CommandWrapper commandWrapper,
PoolStatHelper poolStats,
ThreadsMonitoring threadsMonitoring, int feedSize, QueueStatHelper feedStats) {
BlockingQueue<Runnable> feed = createFeedWithStatistics(feedSize, feedStats);
return newSerialThreadPool(threadName, threadInitializer, commandWrapper, poolStats,
threadsMonitoring, feed);
}
public static ExecutorService newSerialThreadPoolWithUnlimitedFeed(String threadName,
ThreadInitializer threadInitializer,
CommandWrapper commandWrapper, PoolStatHelper stats, ThreadsMonitoring threadsMonitoring) {
LinkedBlockingQueue<Runnable> feed = new LinkedBlockingQueue<>();
return newSerialThreadPool(threadName, threadInitializer, commandWrapper, stats,
threadsMonitoring, feed);
}
public static ExecutorService newThreadPoolWithUnlimitedFeed(String threadName,
ThreadInitializer threadInitializer,
CommandWrapper commandWrapper, int poolSize,
PoolStatHelper poolStats, int msTimeout, ThreadsMonitoring threadsMonitoring) {
LinkedBlockingQueue<Runnable> feed = new LinkedBlockingQueue<>();
ThreadFactory threadFactory =
new LoggingThreadFactory(threadName, threadInitializer, commandWrapper);
return new PooledExecutorWithDMStats(feed, poolSize, poolStats, threadFactory, msTimeout,
threadsMonitoring);
}
public static ExecutorService newThreadPoolWithFixedFeed(String threadName,
CommandWrapper commandWrapper,
int poolSize, PoolStatHelper poolStats, int msTimeout, ThreadsMonitoring threadsMonitoring,
int feedSize) {
ArrayBlockingQueue<Runnable> feed = new ArrayBlockingQueue<>(feedSize);
ThreadFactory threadFactory = new LoggingThreadFactory(threadName, commandWrapper);
return new PooledExecutorWithDMStats(feed, poolSize, poolStats, threadFactory, msTimeout,
threadsMonitoring);
}
public static ExecutorService newFunctionThreadPoolWithFeedStatistics(String threadName,
ThreadInitializer threadInitializer, CommandWrapper commandWrapper,
int poolSize, PoolStatHelper poolStats,
ThreadsMonitoring threadsMonitoring, int feedSize, QueueStatHelper feedStats) {
BlockingQueue<Runnable> feed = createFeedWithStatistics(feedSize, feedStats);
ThreadFactory threadFactory =
new LoggingThreadFactory(threadName, threadInitializer, commandWrapper);
return new FunctionExecutionPooledExecutor(feed, poolSize, poolStats, threadFactory, true,
threadsMonitoring);
}
private static BlockingQueue<Runnable> createFeedWithStatistics(int feedSize,
QueueStatHelper feedStats) {
BlockingQueue<Runnable> feed;
if (feedSize == 0) {
feed = new OverflowQueueWithDMStats<>(feedStats);
} else {
feed = new OverflowQueueWithDMStats<>(feedSize, feedStats);
}
return feed;
}
public static ExecutorService newThreadPoolWithFeedStatistics(String threadName,
ThreadInitializer threadInitializer, CommandWrapper commandWrapper,
int poolSize, PoolStatHelper poolStats,
ThreadsMonitoring threadsMonitoring, int feedSize, QueueStatHelper feedStats) {
BlockingQueue<Runnable> feed = createFeedWithStatistics(feedSize, feedStats);
return newThreadPool(threadName, threadInitializer, commandWrapper, poolSize, poolStats,
threadsMonitoring, feed);
}
public static ExecutorService newThreadPool(String threadName,
ThreadInitializer threadInitializer, CommandWrapper commandWrapper,
int poolSize, PoolStatHelper poolStats,
ThreadsMonitoring threadsMonitoring, BlockingQueue<Runnable> feed) {
ThreadFactory threadFactory =
new LoggingThreadFactory(threadName, threadInitializer, commandWrapper);
return new PooledExecutorWithDMStats(feed, poolSize, poolStats, threadFactory,
threadsMonitoring, GEMFIRE_PREFIX);
}
public static ExecutorService newThreadPoolWithSynchronousFeed(String threadName,
CommandWrapper commandWrapper,
int poolSize) {
ThreadFactory threadFactory = new LoggingThreadFactory(threadName, commandWrapper);
SynchronousQueue<Runnable> feed = new SynchronousQueue<>();
return new PooledExecutorWithDMStats(feed, poolSize, threadFactory, null,
GEMFIRE_PREFIX);
}
public static ExecutorService newThreadPoolWithSynchronousFeed(String threadName,
CommandWrapper commandWrapper,
int poolSize, PoolStatHelper poolStats, int msTimeout, ThreadsMonitoring threadsMonitoring) {
ThreadFactory threadFactory = new LoggingThreadFactory(threadName, commandWrapper);
SynchronousQueue<Runnable> feed = new SynchronousQueue<>();
return new PooledExecutorWithDMStats(feed, poolSize, poolStats, threadFactory, msTimeout,
threadsMonitoring);
}
public static ExecutorService newThreadPoolWithSynchronousFeed(String threadName, int poolSize,
PoolStatHelper stats, int msTimeout, RejectedExecutionHandler rejectionHandler) {
final SynchronousQueue<Runnable> feed = new SynchronousQueue<>();
ThreadFactory threadFactory = new LoggingThreadFactory(threadName);
return new PooledExecutorWithDMStats(feed, poolSize, stats, threadFactory, msTimeout,
rejectionHandler, null);
}
public static ExecutorService newThreadPoolWithSynchronousFeed(String threadName,
ThreadInitializer threadInitializer, CommandWrapper commandWrapper,
int corePoolSize, int maximumPoolSize, long keepAliveSeconds) {
final BlockingQueue<Runnable> blockingQueue = new SynchronousQueue<>();
ThreadFactory threadFactory =
new LoggingThreadFactory(threadName, threadInitializer, commandWrapper);
return new ThreadPoolExecutor(corePoolSize, maximumPoolSize, keepAliveSeconds, SECONDS,
blockingQueue,
threadFactory);
}
public static ExecutorService newThreadPoolWithSynchronousFeed(String threadName,
int corePoolSize, int maximumPoolSize, long keepAliveSeconds) {
return newThreadPoolWithSynchronousFeed(threadName, null, null, corePoolSize, maximumPoolSize,
keepAliveSeconds);
}
public static ExecutorService newThreadPoolWithSynchronousFeedThatHandlesRejection(
String threadName,
ThreadInitializer threadInitializer, CommandWrapper commandWrapper,
int corePoolSize, int maximumPoolSize,
long keepAliveSeconds) {
final BlockingQueue<Runnable> blockingQueue = new SynchronousQueue<>();
final RejectedExecutionHandler rejectedExecutionHandler = (r, pool) -> {
try {
blockingQueue.put(r);
} catch (InterruptedException ex) {
Thread.currentThread().interrupt(); // preserve the state
throw new RejectedExecutionException("interrupted", ex);
}
};
ThreadFactory threadFactory =
new LoggingThreadFactory(threadName, threadInitializer, commandWrapper);
return new ThreadPoolExecutor(corePoolSize, maximumPoolSize, keepAliveSeconds, SECONDS,
blockingQueue,
threadFactory, rejectedExecutionHandler);
}
public static ExecutorService newFixedThreadPoolWithTimeout(String threadName,
int poolSize, int keepAliveSeconds, QueueStatHelper feedStats) {
BlockingQueue<Runnable> feed = createFeedWithStatistics(0, feedStats);
return LoggingExecutors.newFixedThreadPool(threadName, true, poolSize, keepAliveSeconds, feed);
}
public static ScheduledExecutorService newScheduledThreadPool(String threadName, int poolSize,
int keepAliveMillis, ThreadsMonitoring threadsMonitoring) {
ScheduledThreadPoolExecutorWithKeepAlive result =
new ScheduledThreadPoolExecutorWithKeepAlive(poolSize,
keepAliveMillis, MILLISECONDS, new LoggingThreadFactory(threadName),
threadsMonitoring);
result.setContinueExistingPeriodicTasksAfterShutdownPolicy(false);
result.setExecuteExistingDelayedTasksAfterShutdownPolicy(false);
return result;
}
private CoreLoggingExecutors() {
// no instances allowed
}
}