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
715a4075
authored
Nov 09, 2018
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
升级开发分支:2.0.2
parent
6dfa5eb2
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
28 additions
and
26 deletions
doc/XXL-JOB官方文档.md
pom.xml
xxl-job-admin/pom.xml
xxl-job-admin/src/main/resources/i18n/message.properties
xxl-job-admin/src/main/resources/i18n/message_en.properties
xxl-job-core/pom.xml
xxl-job-executor-samples/pom.xml
xxl-job-executor-samples/xxl-job-executor-sample-frameless/pom.xml
xxl-job-executor-samples/xxl-job-executor-sample-jfinal/pom.xml
xxl-job-executor-samples/xxl-job-executor-sample-nutz/pom.xml
xxl-job-executor-samples/xxl-job-executor-sample-spring/pom.xml
xxl-job-executor-samples/xxl-job-executor-sample-springboot/pom.xml
doc/XXL-JOB官方文档.md
View file @
715a4075
## 《分
布式任务调度平台XXL-JOB》
## 《分
布式任务调度平台XXL-JOB》
...
@@ -1387,6 +1387,9 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
...
@@ -1387,6 +1387,9 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
4、底层通讯组件升级,修复通讯异常时无效等待的问题;
-
4、底层通讯组件升级,修复通讯异常时无效等待的问题;
-
5、执行器启动之后jetty停止的问题修复;
-
5、执行器启动之后jetty停止的问题修复;
### 6.24 版本 v2.0.2 Release Notes[迭代中]
-
1、
[
迭代中
]
任务告警逻辑调整:任务调度,以及任务回调失败时,均推送监控队列。考虑通过任务Log字段控制告警状态;
### TODO LIST
### TODO LIST
-
1、任务分片路由:分片采用一致性Hash算法计算出尽量稳定的分片顺序,即使注册机器存在波动也不会引起分批分片顺序大的波动;目前采用IP自然排序,可以满足需求,待定;
-
1、任务分片路由:分片采用一致性Hash算法计算出尽量稳定的分片顺序,即使注册机器存在波动也不会引起分批分片顺序大的波动;目前采用IP自然排序,可以满足需求,待定;
...
@@ -1400,20 +1403,19 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
...
@@ -1400,20 +1403,19 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
9、API事件触发类型任务(更类似MQ消息)支持"动态传参、延时消费";该类型任务不走Quartz,单独建立MQ消息表,调度中心竞争触发;待定,该功能与 XXL-MQ 冲突,该场景建议用后者;
-
9、API事件触发类型任务(更类似MQ消息)支持"动态传参、延时消费";该类型任务不走Quartz,单独建立MQ消息表,调度中心竞争触发;待定,该功能与 XXL-MQ 冲突,该场景建议用后者;
-
10、调度线程池改为协程方式实现,大幅降低系统内存消耗;
-
10、调度线程池改为协程方式实现,大幅降低系统内存消耗;
-
11、任务依赖增强,新增任务类型 "流程任务",流程节点可挂载普通类型任务,承担任务依赖功能。现有子任务模型取消;需要考虑任务依赖死循环问题;
-
11、任务依赖增强,新增任务类型 "流程任务",流程节点可挂载普通类型任务,承担任务依赖功能。现有子任务模型取消;需要考虑任务依赖死循环问题;
-
12、任务告警逻辑调整:任务调度,以及任务回调失败时,均推送监控队列。后期考虑通过任务Log字段控制告警状态;
-
12、提供多版本执行器:不依赖容器版本、不内嵌Jetty版本(通过配置executoraddress替换jetty通讯)等;
-
13、提供多版本执行器:不依赖容器版本、不内嵌Jetty版本(通过配置executoraddress替换jetty通讯)等;
-
13、注册中心支持扩展,除默认基于DB之外,支持扩展接入第三方注册中心如zk、eureka等;
-
14、注册中心支持扩展,除默认基于DB之外,支持扩展接入第三方注册中心如zk、eureka等;
-
14、流程任务,支持参数传递;
-
15、流程任务,支持参数传递;
-
15、Cron TimeZone 自定义;
-
16、Cron TimeZone 自定义;
-
16、忙碌转移优化,全部机器忙碌时不再直接失败;
-
17、忙碌转移优化,全部机器忙碌时不再直接失败;
-
17、流程任务等,透传动态参数;
-
18、流程任务等,透传动态参数;
-
18、任务支持切换执行器,quartz job group固定;
-
19、任务支持切换执行器,quartz job group固定;
-
19、任务自动注册;待考虑,因为任务自动注册将会导致任务难以管理控制;
-
20、任务自动注册;待考虑,因为任务自动注册将会导致任务难以管理控制;
-
20、批量触发支持,添加参数 "org.quartz.scheduler.batchTriggerAcquisitionMaxCount: 50";
-
21、批量触发支持,添加参数 "org.quartz.scheduler.batchTriggerAcquisitionMaxCount: 50";
-
21、失败重试间隔;
-
22、失败重试间隔;
-
22、任务权限管理:执行器为粒度分配权限,核心操作校验权限;
-
23、任务权限管理:执行器为粒度分配权限,核心操作校验权限;
-
23、SimpleTrigger 支持;
-
24、SimpleTrigger 支持;
-
24、cron在线生成工具,如 "cronboot/cron.qqe2";
-
25、cron在线生成工具,如 "cronboot/cron.qqe2";
## 七、其他
## 七、其他
...
...
pom.xml
View file @
715a4075
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
com.xuxueli
</groupId>
<groupId>
com.xuxueli
</groupId>
<artifactId>
xxl-job
</artifactId>
<artifactId>
xxl-job
</artifactId>
<version>
2.0.
1
</version>
<version>
2.0.
2-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
<name>
${project.artifactId}
</name>
<name>
${project.artifactId}
</name>
...
...
xxl-job-admin/pom.xml
View file @
715a4075
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<parent>
<parent>
<groupId>
com.xuxueli
</groupId>
<groupId>
com.xuxueli
</groupId>
<artifactId>
xxl-job
</artifactId>
<artifactId>
xxl-job
</artifactId>
<version>
2.0.
1
</version>
<version>
2.0.
2-SNAPSHOT
</version>
</parent>
</parent>
<artifactId>
xxl-job-admin
</artifactId>
<artifactId>
xxl-job-admin
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
xxl-job-admin/src/main/resources/i18n/message.properties
View file @
715a4075
admin_name
=
任务调度中心
admin_name
=
任务调度中心
admin_name_full
=
分布式任务调度平台XXL-JOB
admin_name_full
=
分布式任务调度平台XXL-JOB
admin_version
=
2.0.
1
admin_version
=
2.0.
2-SNAPSHOT
## system
## system
system_tips
=
系统提示
system_tips
=
系统提示
...
...
xxl-job-admin/src/main/resources/i18n/message_en.properties
View file @
715a4075
admin_name
=
Scheduling Center
admin_name
=
Scheduling Center
admin_name_full
=
Distributed Task Scheduling Platform XXL-JOB
admin_name_full
=
Distributed Task Scheduling Platform XXL-JOB
admin_version
=
2.0.
1
admin_version
=
2.0.
2-SNAPSHOT
## system
## system
system_tips
=
System message
system_tips
=
System message
...
...
xxl-job-core/pom.xml
View file @
715a4075
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<parent>
<parent>
<groupId>
com.xuxueli
</groupId>
<groupId>
com.xuxueli
</groupId>
<artifactId>
xxl-job
</artifactId>
<artifactId>
xxl-job
</artifactId>
<version>
2.0.
1
</version>
<version>
2.0.
2-SNAPSHOT
</version>
</parent>
</parent>
<artifactId>
xxl-job-core
</artifactId>
<artifactId>
xxl-job-core
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
xxl-job-executor-samples/pom.xml
View file @
715a4075
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
com.xuxueli
</groupId>
<groupId>
com.xuxueli
</groupId>
<artifactId>
xxl-job
</artifactId>
<artifactId>
xxl-job
</artifactId>
<version>
2.0.
1
</version>
<version>
2.0.
2-SNAPSHOT
</version>
</parent>
</parent>
<artifactId>
xxl-job-executor-samples
</artifactId>
<artifactId>
xxl-job-executor-samples
</artifactId>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
...
...
xxl-job-executor-samples/xxl-job-executor-sample-frameless/pom.xml
View file @
715a4075
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
<parent>
<parent>
<groupId>
com.xuxueli
</groupId>
<groupId>
com.xuxueli
</groupId>
<artifactId>
xxl-job-executor-samples
</artifactId>
<artifactId>
xxl-job-executor-samples
</artifactId>
<version>
2.0.
1
</version>
<version>
2.0.
2-SNAPSHOT
</version>
</parent>
</parent>
<artifactId>
xxl-job-executor-sample-frameless
</artifactId>
<artifactId>
xxl-job-executor-sample-frameless
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
xxl-job-executor-samples/xxl-job-executor-sample-jfinal/pom.xml
View file @
715a4075
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
xxl-job-executor-samples
</artifactId>
<artifactId>
xxl-job-executor-samples
</artifactId>
<groupId>
com.xuxueli
</groupId>
<groupId>
com.xuxueli
</groupId>
<version>
2.0.
1
</version>
<version>
2.0.
2-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
xxl-job-executor-sample-jfinal
</artifactId>
<artifactId>
xxl-job-executor-sample-jfinal
</artifactId>
...
...
xxl-job-executor-samples/xxl-job-executor-sample-nutz/pom.xml
View file @
715a4075
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
com.xuxueli
</groupId>
<groupId>
com.xuxueli
</groupId>
<artifactId>
xxl-job-executor-samples
</artifactId>
<artifactId>
xxl-job-executor-samples
</artifactId>
<version>
2.0.
1
</version>
<version>
2.0.
2-SNAPSHOT
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
xxl-job-executor-sample-nutz
</artifactId>
<artifactId>
xxl-job-executor-sample-nutz
</artifactId>
...
...
xxl-job-executor-samples/xxl-job-executor-sample-spring/pom.xml
View file @
715a4075
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<parent>
<parent>
<groupId>
com.xuxueli
</groupId>
<groupId>
com.xuxueli
</groupId>
<artifactId>
xxl-job-executor-samples
</artifactId>
<artifactId>
xxl-job-executor-samples
</artifactId>
<version>
2.0.
1
</version>
<version>
2.0.
2-SNAPSHOT
</version>
</parent>
</parent>
<artifactId>
xxl-job-executor-sample-spring
</artifactId>
<artifactId>
xxl-job-executor-sample-spring
</artifactId>
<packaging>
war
</packaging>
<packaging>
war
</packaging>
...
...
xxl-job-executor-samples/xxl-job-executor-sample-springboot/pom.xml
View file @
715a4075
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
<parent>
<parent>
<groupId>
com.xuxueli
</groupId>
<groupId>
com.xuxueli
</groupId>
<artifactId>
xxl-job-executor-samples
</artifactId>
<artifactId>
xxl-job-executor-samples
</artifactId>
<version>
2.0.
1
</version>
<version>
2.0.
2-SNAPSHOT
</version>
</parent>
</parent>
<artifactId>
xxl-job-executor-sample-springboot
</artifactId>
<artifactId>
xxl-job-executor-sample-springboot
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
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