Set new policy for central executor pool to avoid loosing data.
Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>
This commit is contained in:
@@ -13,6 +13,7 @@ import java.util.concurrent.BlockingQueue;
|
|||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
import java.util.concurrent.ScheduledExecutorService;
|
import java.util.concurrent.ScheduledExecutorService;
|
||||||
import java.util.concurrent.ThreadPoolExecutor;
|
import java.util.concurrent.ThreadPoolExecutor;
|
||||||
|
import java.util.concurrent.ThreadPoolExecutor.CallerRunsPolicy;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
@@ -63,14 +64,22 @@ public class ExecutorAutoConfiguration {
|
|||||||
final ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(asyncConfigurerProperties.getCorethreads(),
|
final ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(asyncConfigurerProperties.getCorethreads(),
|
||||||
asyncConfigurerProperties.getMaxthreads(), asyncConfigurerProperties.getIdletimeout(),
|
asyncConfigurerProperties.getMaxthreads(), asyncConfigurerProperties.getIdletimeout(),
|
||||||
TimeUnit.MILLISECONDS, blockingQueue,
|
TimeUnit.MILLISECONDS, blockingQueue,
|
||||||
new ThreadFactoryBuilder().setNameFormat("central-executor-pool-%d").build());
|
new ThreadFactoryBuilder().setNameFormat("central-executor-pool-%d").build(),
|
||||||
threadPoolExecutor.setRejectedExecutionHandler((r, executor) -> LOGGER.warn(
|
new PoolSizeExceededPolicy());
|
||||||
"Reject runnable for centralExecutorService, reached limit of queue size {}",
|
|
||||||
executor.getQueue().size()));
|
|
||||||
|
|
||||||
return threadPoolExecutor;
|
return threadPoolExecutor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static class PoolSizeExceededPolicy extends CallerRunsPolicy {
|
||||||
|
@Override
|
||||||
|
public void rejectedExecution(final Runnable r, final ThreadPoolExecutor executor) {
|
||||||
|
LOGGER.warn(
|
||||||
|
"Caller has to run on its own instead of centralExecutorService, reached limit of queue size {}",
|
||||||
|
executor.getQueue().size());
|
||||||
|
super.rejectedExecution(r, executor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the executor for UI background processes.
|
* @return the executor for UI background processes.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user