Commit ab4335ee by xuxueli

调度线程池参数调优

parent 6b3d79ed
## 《分布式任务调度平台XXL-JOB》
## 《分布式任务调度平台XXL-JOB》
......@@ -1472,6 +1472,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
- 2、[规划中] 用户管理:支持在线维护系统用户;
- 3、[规划中] 权限管理:执行器为粒度分配权限,核心操作校验权限,暂定管理员、普通用户两种角色;
- 4、调度日志优化:支持设置日志保留天数,过期日志天维度记录报表,并清理;调度报表汇总实时数据和报表;
- 5、调度线程池参数调优;
### TODO LIST
......
......@@ -22,7 +22,7 @@ public class JobTriggerPoolHelper {
// fast/slow thread pool
private ThreadPoolExecutor fastTriggerPool = new ThreadPoolExecutor(
8,
50,
200,
60L,
TimeUnit.SECONDS,
......@@ -35,7 +35,7 @@ public class JobTriggerPoolHelper {
});
private ThreadPoolExecutor slowTriggerPool = new ThreadPoolExecutor(
0,
10,
100,
60L,
TimeUnit.SECONDS,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment