public class ThreadPool extends AbstractComponent implements java.io.Closeable
Modifier and Type | Class and Description |
---|---|
static interface |
ThreadPool.Cancellable
This interface represents an object whose execution may be cancelled during runtime.
|
static class |
ThreadPool.Info |
static class |
ThreadPool.Names |
static class |
ThreadPool.ThreadPoolType |
Modifier and Type | Field and Description |
---|---|
static Setting<TimeValue> |
ESTIMATED_TIME_INTERVAL_SETTING |
static java.util.Map<java.lang.String,ThreadPool.ThreadPoolType> |
THREAD_POOL_TYPES |
deprecationLogger, logger, settings
Constructor and Description |
---|
ThreadPool(Settings settings,
ExecutorBuilder<?>... customBuilders) |
Modifier and Type | Method and Description |
---|---|
long |
absoluteTimeInMillis()
Returns the value of milliseconds since UNIX epoch.
|
static boolean |
assertNotScheduleThread(java.lang.String reason) |
boolean |
awaitTermination(long timeout,
java.util.concurrent.TimeUnit unit) |
java.util.Collection<ExecutorBuilder> |
builders() |
void |
close() |
org.apache.lucene.util.Counter |
estimatedTimeInMillisCounter() |
java.util.concurrent.ExecutorService |
executor(java.lang.String name)
Get the executor service with the given name.
|
java.util.concurrent.ExecutorService |
generic()
Get the generic executor service.
|
ThreadContext |
getThreadContext() |
ThreadPoolInfo |
info() |
ThreadPool.Info |
info(java.lang.String name) |
long |
relativeTimeInMillis()
Returns a value of milliseconds that may be used for relative time calculations.
|
java.util.concurrent.ScheduledFuture<?> |
schedule(TimeValue delay,
java.lang.String executor,
java.lang.Runnable command)
Schedules a one-shot command to run after a given delay.
|
java.util.concurrent.ScheduledExecutorService |
scheduler() |
ThreadPool.Cancellable |
scheduleWithFixedDelay(java.lang.Runnable command,
TimeValue interval,
java.lang.String executor)
Schedules a periodic action that runs on the specified thread pool.
|
static int |
searchThreadPoolSize(int availableProcessors) |
void |
shutdown() |
void |
shutdownNow() |
ThreadPoolStats |
stats() |
static boolean |
terminate(java.util.concurrent.ExecutorService service,
long timeout,
java.util.concurrent.TimeUnit timeUnit)
Returns
true if the given service was terminated successfully. |
static boolean |
terminate(ThreadPool pool,
long timeout,
java.util.concurrent.TimeUnit timeUnit)
Returns
true if the given pool was terminated successfully. |
logDeprecatedSetting, logRemovedSetting, nodeName
public static final java.util.Map<java.lang.String,ThreadPool.ThreadPoolType> THREAD_POOL_TYPES
public ThreadPool(Settings settings, ExecutorBuilder<?>... customBuilders)
public java.util.Collection<ExecutorBuilder> builders()
public long relativeTimeInMillis()
absoluteTimeInMillis()
.public long absoluteTimeInMillis()
relativeTimeInMillis()
.public org.apache.lucene.util.Counter estimatedTimeInMillisCounter()
public ThreadPoolInfo info()
public ThreadPool.Info info(java.lang.String name)
public ThreadPoolStats stats()
public java.util.concurrent.ExecutorService generic()
Executor.execute(Runnable)
method will run the Runnable
it
is given in the ThreadContext
of the thread that queues it.public java.util.concurrent.ExecutorService executor(java.lang.String name)
Executor.execute(Runnable)
method will run the
Runnable
it is given in the ThreadContext
of the thread that queues it.name
- the name of the executor service to obtainjava.lang.IllegalArgumentException
- if no executor service with the specified name existspublic java.util.concurrent.ScheduledExecutorService scheduler()
public ThreadPool.Cancellable scheduleWithFixedDelay(java.lang.Runnable command, TimeValue interval, java.lang.String executor)
command
- the action to takeinterval
- the delay intervalexecutor
- The name of the thread pool on which to execute this task. ThreadPool.Names.SAME
means "execute on the scheduler thread",
which there is only one of. Executing blocking or long running code on the ThreadPool.Names.SAME
thread pool should never
be done as it can cause issues with the clusterThreadPool.Cancellable
that can be used to cancel the subsequent runs of the command. If the command is running, it will
not be interrupted.public java.util.concurrent.ScheduledFuture<?> schedule(TimeValue delay, java.lang.String executor, java.lang.Runnable command)
threadPool.getThreadContext().preserveContext
on the runnable before passing
it to this method.delay
- delay before the task executesexecutor
- the name of the thread pool on which to execute this task. SAME means "execute on the scheduler thread" which changes the
meaning of the ScheduledFuture returned by this method. In that case the ScheduledFuture will complete only when the command
completes.command
- the command to runEsRejectedExecutionException
- if the task cannot be scheduled for executionpublic void shutdown()
public void shutdownNow()
public boolean awaitTermination(long timeout, java.util.concurrent.TimeUnit unit) throws java.lang.InterruptedException
java.lang.InterruptedException
public static int searchThreadPoolSize(int availableProcessors)
public static boolean terminate(java.util.concurrent.ExecutorService service, long timeout, java.util.concurrent.TimeUnit timeUnit)
true
if the given service was terminated successfully. If the termination timed out,
the service is null
this method will return false
.public static boolean terminate(ThreadPool pool, long timeout, java.util.concurrent.TimeUnit timeUnit)
true
if the given pool was terminated successfully. If the termination timed out,
the service is null
this method will return false
.public void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
java.io.IOException
public ThreadContext getThreadContext()
public static boolean assertNotScheduleThread(java.lang.String reason)