Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
熊鹏飞
/
xxljob220
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
ab4335ee
authored
May 04, 2019
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
调度线程池参数调优
parent
6b3d79ed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
doc/XXL-JOB官方文档.md
xxl-job-admin/src/main/java/com/xxl/job/admin/core/thread/JobTriggerPoolHelper.java
doc/XXL-JOB官方文档.md
View file @
ab4335ee
## 《分
布式任务调度平台XXL-JOB》
## 《分
布式任务调度平台XXL-JOB》
...
@@ -1472,6 +1472,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
...
@@ -1472,6 +1472,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
2、
[
规划中
]
用户管理:支持在线维护系统用户;
-
2、
[
规划中
]
用户管理:支持在线维护系统用户;
-
3、
[
规划中
]
权限管理:执行器为粒度分配权限,核心操作校验权限,暂定管理员、普通用户两种角色;
-
3、
[
规划中
]
权限管理:执行器为粒度分配权限,核心操作校验权限,暂定管理员、普通用户两种角色;
-
4、调度日志优化:支持设置日志保留天数,过期日志天维度记录报表,并清理;调度报表汇总实时数据和报表;
-
4、调度日志优化:支持设置日志保留天数,过期日志天维度记录报表,并清理;调度报表汇总实时数据和报表;
-
5、调度线程池参数调优;
### TODO LIST
### TODO LIST
...
...
xxl-job-admin/src/main/java/com/xxl/job/admin/core/thread/JobTriggerPoolHelper.java
View file @
ab4335ee
...
@@ -22,7 +22,7 @@ public class JobTriggerPoolHelper {
...
@@ -22,7 +22,7 @@ public class JobTriggerPoolHelper {
// fast/slow thread pool
// fast/slow thread pool
private
ThreadPoolExecutor
fastTriggerPool
=
new
ThreadPoolExecutor
(
private
ThreadPoolExecutor
fastTriggerPool
=
new
ThreadPoolExecutor
(
8
,
50
,
200
,
200
,
60L
,
60L
,
TimeUnit
.
SECONDS
,
TimeUnit
.
SECONDS
,
...
@@ -35,7 +35,7 @@ public class JobTriggerPoolHelper {
...
@@ -35,7 +35,7 @@ public class JobTriggerPoolHelper {
});
});
private
ThreadPoolExecutor
slowTriggerPool
=
new
ThreadPoolExecutor
(
private
ThreadPoolExecutor
slowTriggerPool
=
new
ThreadPoolExecutor
(
0
,
1
0
,
100
,
100
,
60L
,
60L
,
TimeUnit
.
SECONDS
,
TimeUnit
.
SECONDS
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment