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
571c024e
authored
Feb 22, 2019
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
update document
parent
9c0cd935
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
doc/XXL-JOB官方文档.md
xxl-job-admin/src/main/java/com/xxl/job/admin/controller/JobInfoController.java
doc/XXL-JOB官方文档.md
View file @
571c024e
## 《分
布式任务调度平台XXL-JOB》
## 《分
布式任务调度平台XXL-JOB》
...
...
@@ -1424,9 +1424,8 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
10、任务回调、心跳注册成功日志优化,非核心常规日志调整为debug级别,降低冗余日志输出;
-
11、执行器回调日志落盘方案复用RPC序列化方案,并移除Jackson依赖;
-
12、任务支持更换绑定执行器,方便任务分组转移和管理;
-
[
迭代中
]
注册中心优化,实时性注册发现:心跳注册间隔10s,refresh失败则首次注册并立即更新注册信息,心跳类似;30s过期销毁;
-
[
迭代中
]
脚本任务,支持数据参数,新版本仅支持单参数不支持需要兼容;
-
[
迭代中
]
提供执行器Docker镜像;
### TODO LIST
-
1、任务分片路由:分片采用一致性Hash算法计算出尽量稳定的分片顺序,即使注册机器存在波动也不会引起分批分片顺序大的波动;目前采用IP自然排序,可以满足需求,待定;
...
...
@@ -1463,7 +1462,9 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
32、任务暂停、删除优化,避免quartz delete不完整导致任务脏数据;
-
32、quartz misfire 配置优化,计划改为0;
-
33、新增状态列,支持筛选;
-
34、注册中心优化,实时性注册发现:心跳注册间隔10s,refresh失败则首次注册并立即更新注册信息,心跳类似;30s过期销毁;
-
35、提供执行器Docker镜像;
-
36、脚本任务,支持数据参数,新版本仅支持单参数不支持需要兼容;
## 七、其他
...
...
xxl-job-admin/src/main/java/com/xxl/job/admin/controller/JobInfoController.java
View file @
571c024e
...
...
@@ -76,13 +76,13 @@ public class JobInfoController {
return
xxlJobService
.
remove
(
id
);
}
@RequestMapping
(
"/stop"
)
// TODO, pause >> stop
@RequestMapping
(
"/stop"
)
@ResponseBody
public
ReturnT
<
String
>
pause
(
int
id
)
{
return
xxlJobService
.
stop
(
id
);
}
@RequestMapping
(
"/start"
)
// TODO, resume >> start
@RequestMapping
(
"/start"
)
@ResponseBody
public
ReturnT
<
String
>
start
(
int
id
)
{
return
xxlJobService
.
start
(
id
);
...
...
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