Class QueueResizingEsThreadPoolExecutor
java.lang.Object
java.util.concurrent.AbstractExecutorService
java.util.concurrent.ThreadPoolExecutor
org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor
org.elasticsearch.common.util.concurrent.QueueResizingEsThreadPoolExecutor
- All Implemented Interfaces:
Executor
,ExecutorService
An extension to thread pool executor, which automatically adjusts the queue size of the
ResizableBlockingQueue
according to Little's Law.-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor
EsThreadPoolExecutor.ShutdownListener
Nested classes/interfaces inherited from class java.util.concurrent.ThreadPoolExecutor
ThreadPoolExecutor.AbortPolicy, ThreadPoolExecutor.CallerRunsPolicy, ThreadPoolExecutor.DiscardOldestPolicy, ThreadPoolExecutor.DiscardPolicy
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
afterExecute(Runnable r, Throwable t)
protected void
Append details about this thread pool to the specifiedStringBuilder
.int
Returns the current queue size (operations that are queued)double
Returns the exponentially weighted moving average of the task execution timeprotected Runnable
protected Runnable
wrapRunnable(Runnable command)
Methods inherited from class org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor
execute, getTasks, terminated, toString
Methods inherited from class java.util.concurrent.ThreadPoolExecutor
allowCoreThreadTimeOut, allowsCoreThreadTimeOut, awaitTermination, beforeExecute, 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
Methods inherited from class java.util.concurrent.AbstractExecutorService
invokeAll, invokeAll, invokeAny, invokeAny, newTaskFor, newTaskFor, submit, submit, submit
-
Field Details
-
EWMA_ALPHA
public static double EWMA_ALPHA
-
-
Method Details
-
wrapRunnable
- Overrides:
wrapRunnable
in classEsThreadPoolExecutor
-
unwrap
- Overrides:
unwrap
in classEsThreadPoolExecutor
-
getTaskExecutionEWMA
public double getTaskExecutionEWMA()Returns the exponentially weighted moving average of the task execution time -
getCurrentQueueSize
public int getCurrentQueueSize()Returns the current queue size (operations that are queued) -
afterExecute
- Overrides:
afterExecute
in classEsThreadPoolExecutor
-
appendThreadPoolExecutorDetails
Description copied from class:EsThreadPoolExecutor
Append details about this thread pool to the specifiedStringBuilder
. All details should be appended as key/value pairs in the form "%s = %s, "- Overrides:
appendThreadPoolExecutorDetails
in classEsThreadPoolExecutor
- Parameters:
sb
- theStringBuilder
to append to
-