Evenly distributed tasks among scheduled threadpools.
This commit is contained in:
parent
71568c1a02
commit
2b5c29815e
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -94,6 +94,34 @@ public final class ThreadPool
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the least used ScheduledThreadPoolExecutor from SCHEDULED_POOLS.
|
||||||
|
* @return the least used ScheduledThreadPoolExecutor.
|
||||||
|
*/
|
||||||
|
private static ScheduledThreadPoolExecutor getLeastUsedScheduledThreadPool()
|
||||||
|
{
|
||||||
|
int lastQueueSize = Integer.MAX_VALUE;
|
||||||
|
ScheduledThreadPoolExecutor leastUsed = null;
|
||||||
|
for (ScheduledThreadPoolExecutor threadPool : SCHEDULED_POOLS)
|
||||||
|
{
|
||||||
|
final int queueSize = threadPool.getQueue().size();
|
||||||
|
if (lastQueueSize > queueSize)
|
||||||
|
{
|
||||||
|
lastQueueSize = queueSize;
|
||||||
|
leastUsed = threadPool;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not likely to happen.
|
||||||
|
if (leastUsed == null)
|
||||||
|
{
|
||||||
|
LOGGER.warning("ThreadPool: All threadpool queues reached 2147483647 size! Consider restarting the server!");
|
||||||
|
leastUsed = SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT];
|
||||||
|
}
|
||||||
|
|
||||||
|
return leastUsed;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
* Creates and executes a one-shot action that becomes enabled after the given delay.
|
||||||
* @param runnable : the task to execute.
|
* @param runnable : the task to execute.
|
||||||
@ -104,7 +132,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().schedule(new RunnableWrapper(runnable), delay, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
@ -123,7 +151,7 @@ public final class ThreadPool
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return SCHEDULED_POOLS[SCHEDULED_THREAD_RANDOMIZER++ % Config.SCHEDULED_THREAD_POOL_COUNT].scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
return getLeastUsedScheduledThreadPool().scheduleAtFixedRate(new RunnableWrapper(runnable), initialDelay, period, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user