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
e56731d7
authored
Aug 24, 2018
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
执行器通讯线程优化,corePoolSize从256降低至32
parent
c1ca3fbe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
doc/XXL-JOB官方文档.md
xxl-job-core/src/main/java/com/xxl/job/core/rpc/netcom/jetty/server/JettyServer.java
doc/XXL-JOB官方文档.md
View file @
e56731d7
## 《分
布式任务调度平台XXL-JOB》
## 《分
布式任务调度平台XXL-JOB》
...
...
@@ -1240,7 +1240,8 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
24、取消父子任务不可重复的限制,支持循环任务触发等特殊场景;
-
25、任务调度备注中标注任务触发类型,如Cron触发、父任务触发、API触发等等,方便排查调度日志;
-
26、底层日志组件SimpleDateFormat线程安全问题修复;
-
27、【迭代中】分片任务失败重试优化,仅重试当前失败的分片;
-
27、执行器通讯线程优化,corePoolSize从256降低至32;
-
28、【迭代中】分片任务失败重试优化,仅重试当前失败的分片;
### TODO LIST
...
...
xxl-job-core/src/main/java/com/xxl/job/core/rpc/netcom/jetty/server/JettyServer.java
View file @
e56731d7
...
...
@@ -26,7 +26,7 @@ public class JettyServer {
public
void
run
()
{
// The Server
server
=
new
Server
(
new
ExecutorThreadPool
());
// 非阻塞
server
=
new
Server
(
new
ExecutorThreadPool
(
32
,
256
,
60L
*
1000
));
// 非阻塞
// HTTP connector
ServerConnector
connector
=
new
ServerConnector
(
server
);
...
...
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