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
a11d130c
authored
Mar 13, 2017
by
xueli.xue
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
版本升级:1.6.1-SNAPSHOT
parent
3d3f53bc
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
14 deletions
README.md
pom.xml
xxl-job-admin/pom.xml
xxl-job-core/pom.xml
xxl-job-executor-example/pom.xml
README.md
View file @
a11d130c
...
@@ -70,7 +70,7 @@ XXL-JOB是一个轻量级分布式任务调度框架,其核心设计目标是
...
@@ -70,7 +70,7 @@ XXL-JOB是一个轻量级分布式任务调度框架,其核心设计目标是
<dependency>
<dependency>
<groupId>com.xuxueli</groupId>
<groupId>com.xuxueli</groupId>
<artifactId>xxl-job-core</artifactId>
<artifactId>xxl-job-core</artifactId>
<version>1.
5.2
</version>
<version>1.
6.0
</version>
</dependency>
</dependency>
```
```
...
@@ -755,26 +755,28 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
...
@@ -755,26 +755,28 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
7、底层代码重构和逻辑优化以及CleanCode;
-
7、底层代码重构和逻辑优化以及CleanCode;
-
8、GLUE依赖注入逻辑优化,支持别名注入;
-
8、GLUE依赖注入逻辑优化,支持别名注入;
#### 6.11 版本 V1.6.0 特性
(CODING)
#### 6.11 版本 V1.6.0 特性
-
1、通讯方案升级,原基于HEX的通讯模型调整为基于HTTP的B-RPC的通讯模型;
-
1、通讯方案升级,原基于HEX的通讯模型调整为基于HTTP的B-RPC的通讯模型;
-
2、执行器支持手动设置执行地址列表,提供开关切换使用注册地址还是手动设置的地址;
-
2、执行器支持手动设置执行地址列表,提供开关切换使用注册地址还是手动设置的地址;
-
3、执行器路由规则:第一个、最后一个、轮询、随机、一致性HASH、最不经常使用、最近最久未使用、故障转移;
-
3、执行器路由规则:第一个、最后一个、轮询、随机、一致性HASH、最不经常使用、最近最久未使用、故障转移;
-
4、规范线程模型统一,统一线程销毁方案;
-
4、规范线程模型统一,统一线程销毁方案
(通过listener或stop方法,容器销毁时销毁线程;Daemon方式有时不太理想)
;
-
5、规范系统配置数据,通过配置文件统一管理;
-
5、规范系统配置数据,通过配置文件统一管理;
-
6、CleanCode,清理无效的历史参数;
-
6、CleanCode,清理无效的历史参数;
-
7、底层扩展数据结构以及相关表结构调整;
-
7、底层扩展数据结构以及相关表结构调整;
-
8、新建任务默认为非运行状态;
-
8、新建任务默认为非运行状态;
-
9、GLUE模式任务实例更新逻辑优化,原根据超时时间更新改为根据版本号更新,源码变动版本号加一;
-
9、GLUE模式任务实例更新逻辑优化,原根据超时时间更新改为根据版本号更新,源码变动版本号加一;
#### 6.12 版本 V1.6.1 特性 (Coding)
-
1、rolling日志,日志界面风格同glue任务编辑器;
#### TODO LIST
#### TODO LIST
-
1、支持脚本JOB(源码或指定路径), 即shell/python/php等, 日志实时输出并支持在线监控;定制JobHandler实现;
-
1、支持脚本JOB(源码或指定路径), 即shell/python/php等, 日志实时输出并支持在线监控;定制JobHandler实现;
-
2、任务并行触发处理规则:串行调度队列(默认)、并行、忽略、覆盖;
-
2、任务并行触发处理规则:串行调度队列(默认)、并行、忽略、覆盖;
-
3、任务权限管理;
-
3、任务权限管理;
-
4、rolling日志,日志界面风格同glue任务编辑器;
-
4、执行器,server启动,注册逻辑调整;
-
5、执行器,server启动,注册逻辑调整;
-
5、调度失败重试机制;
-
6、通过listener或stop方法,容器销毁时销毁线程;Daemon方式有时不太理想;
-
6、任务报表:总任务数、总调度数、调度成功比例;
-
7、调度失败重试机制;
-
8、任务报表:总任务数、总调度数、调度成功比例;
## 七、其他
## 七、其他
...
...
pom.xml
View file @
a11d130c
...
@@ -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>
1.6.
0
</version>
<version>
1.6.
1-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
<name>
xxl-job
</name>
<name>
xxl-job
</name>
...
...
xxl-job-admin/pom.xml
View file @
a11d130c
...
@@ -4,13 +4,13 @@
...
@@ -4,13 +4,13 @@
<parent>
<parent>
<groupId>
com.xuxueli
</groupId>
<groupId>
com.xuxueli
</groupId>
<artifactId>
xxl-job
</artifactId>
<artifactId>
xxl-job
</artifactId>
<version>
1.6.
0
</version>
<version>
1.6.
1-SNAPSHOT
</version>
</parent>
</parent>
<artifactId>
xxl-job-admin
</artifactId>
<artifactId>
xxl-job-admin
</artifactId>
<packaging>
war
</packaging>
<packaging>
war
</packaging>
<properties>
<properties>
<xxl-job.version>
1.6.
0
</xxl-job.version>
<xxl-job.version>
1.6.
1-SNAPSHOT
</xxl-job.version>
<spring.version>
3.2.17.RELEASE
</spring.version>
<spring.version>
3.2.17.RELEASE
</spring.version>
</properties>
</properties>
...
...
xxl-job-core/pom.xml
View file @
a11d130c
...
@@ -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>
1.6.
0
</version>
<version>
1.6.
1-SNAPSHOT
</version>
</parent>
</parent>
<artifactId>
xxl-job-core
</artifactId>
<artifactId>
xxl-job-core
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
...
...
xxl-job-executor-example/pom.xml
View file @
a11d130c
...
@@ -4,13 +4,13 @@
...
@@ -4,13 +4,13 @@
<parent>
<parent>
<groupId>
com.xuxueli
</groupId>
<groupId>
com.xuxueli
</groupId>
<artifactId>
xxl-job
</artifactId>
<artifactId>
xxl-job
</artifactId>
<version>
1.6.
0
</version>
<version>
1.6.
1-SNAPSHOT
</version>
</parent>
</parent>
<artifactId>
xxl-job-executor-example
</artifactId>
<artifactId>
xxl-job-executor-example
</artifactId>
<packaging>
war
</packaging>
<packaging>
war
</packaging>
<properties>
<properties>
<xxl-job.version>
1.6.
0
</xxl-job.version>
<xxl-job.version>
1.6.
1-SNAPSHOT
</xxl-job.version>
<spring.version>
3.2.17.RELEASE
</spring.version>
<spring.version>
3.2.17.RELEASE
</spring.version>
</properties>
</properties>
...
...
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