Class PrioritizedEsThreadPoolExecutor
java.lang.Object
java.util.concurrent.AbstractExecutorService
java.util.concurrent.ThreadPoolExecutor
org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor
org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor
- All Implemented Interfaces:
java.util.concurrent.Executor,java.util.concurrent.ExecutorService
public class PrioritizedEsThreadPoolExecutor extends EsThreadPoolExecutor
A prioritizing executor which uses a priority queue as a work queue. The jobs that will be submitted will be treated
as
PrioritizedRunnable and/or PrioritizedCallable, those tasks that are not instances of these two will
be wrapped and assign a default Priority.NORMAL priority.
Note, if two tasks have the same priority, the first to arrive will be executed first (FIFO style).
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPrioritizedEsThreadPoolExecutor.PendingNested classes/interfaces inherited from class org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor
EsThreadPoolExecutor.ShutdownListenerNested classes/interfaces inherited from class java.util.concurrent.ThreadPoolExecutor
java.util.concurrent.ThreadPoolExecutor.AbortPolicy, java.util.concurrent.ThreadPoolExecutor.CallerRunsPolicy, java.util.concurrent.ThreadPoolExecutor.DiscardOldestPolicy, java.util.concurrent.ThreadPoolExecutor.DiscardPolicy -
Constructor Summary
Constructors Constructor Description PrioritizedEsThreadPoolExecutor(java.lang.String name, int corePoolSize, int maximumPoolSize, long keepAliveTime, java.util.concurrent.TimeUnit unit, java.util.concurrent.ThreadFactory threadFactory, ThreadContext contextHolder, java.util.concurrent.ScheduledExecutorService timer) -
Method Summary
Modifier and Type Method Description protected voidafterExecute(java.lang.Runnable r, java.lang.Throwable t)protected voidbeforeExecute(java.lang.Thread t, java.lang.Runnable r)voidexecute(java.lang.Runnable command, TimeValue timeout, java.lang.Runnable timeoutCallback)TimeValuegetMaxTaskWaitTime()Returns the waiting time of the first task in the queueintgetNumberOfPendingTasks()PrioritizedEsThreadPoolExecutor.Pending[]getPending()protected <T> java.util.concurrent.RunnableFuture<T>newTaskFor(java.lang.Runnable runnable, T value)protected <T> java.util.concurrent.RunnableFuture<T>newTaskFor(java.util.concurrent.Callable<T> callable)protected java.lang.Runnableunwrap(java.lang.Runnable runnable)protected java.lang.RunnablewrapRunnable(java.lang.Runnable command)Methods inherited from class org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor
appendThreadPoolExecutorDetails, execute, getTasks, terminated, toStringMethods inherited from class java.util.concurrent.ThreadPoolExecutor
allowCoreThreadTimeOut, allowsCoreThreadTimeOut, awaitTermination, finalize, getActiveCount, getCompletedTaskCount, getCorePoolSize, getKeepAliveTime, getLargestPoolSize, getMaximumPoolSize, getPoolSize, getQueue, getRejectedExecutionHandler, getTaskCount, getThreadFactory, isShutdown, isTerminated, isTerminating, prestartAllCoreThreads, prestartCoreThread, purge, remove, setCorePoolSize, setKeepAliveTime, setMaximumPoolSize, setRejectedExecutionHandler, setThreadFactory, shutdown, shutdownNow
-
Constructor Details
-
PrioritizedEsThreadPoolExecutor
public PrioritizedEsThreadPoolExecutor(java.lang.String name, int corePoolSize, int maximumPoolSize, long keepAliveTime, java.util.concurrent.TimeUnit unit, java.util.concurrent.ThreadFactory threadFactory, ThreadContext contextHolder, java.util.concurrent.ScheduledExecutorService timer)
-
-
Method Details
-
getPending
-
getNumberOfPendingTasks
public int getNumberOfPendingTasks() -
getMaxTaskWaitTime
Returns the waiting time of the first task in the queue -
beforeExecute
protected void beforeExecute(java.lang.Thread t, java.lang.Runnable r)- Overrides:
beforeExecutein classjava.util.concurrent.ThreadPoolExecutor
-
afterExecute
protected void afterExecute(java.lang.Runnable r, java.lang.Throwable t)- Overrides:
afterExecutein classEsThreadPoolExecutor
-
execute
public void execute(java.lang.Runnable command, TimeValue timeout, java.lang.Runnable timeoutCallback) -
wrapRunnable
protected java.lang.Runnable wrapRunnable(java.lang.Runnable command)- Overrides:
wrapRunnablein classEsThreadPoolExecutor
-
unwrap
protected java.lang.Runnable unwrap(java.lang.Runnable runnable)- Overrides:
unwrapin classEsThreadPoolExecutor
-
newTaskFor
protected <T> java.util.concurrent.RunnableFuture<T> newTaskFor(java.lang.Runnable runnable, T value)- Overrides:
newTaskForin classjava.util.concurrent.AbstractExecutorService
-
newTaskFor
protected <T> java.util.concurrent.RunnableFuture<T> newTaskFor(java.util.concurrent.Callable<T> callable)- Overrides:
newTaskForin classjava.util.concurrent.AbstractExecutorService
-