|
@@ -15,9 +15,9 @@ public class AsyncConfig {
|
|
|
@Bean(name = "asyncExecutor")
|
|
|
public Executor asyncExecutor() {
|
|
|
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
|
|
|
- executor.setCorePoolSize(50);
|
|
|
- executor.setMaxPoolSize(200);
|
|
|
- executor.setQueueCapacity(250);
|
|
|
+ executor.setCorePoolSize(200);
|
|
|
+ executor.setMaxPoolSize(800);
|
|
|
+ executor.setQueueCapacity(900);
|
|
|
executor.setKeepAliveSeconds(60);
|
|
|
executor.setThreadNamePrefix("aynTask-");
|
|
|
executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
|