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
80b544b5
authored
Feb 18, 2019
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
执行器回调日志落盘方案复用RPC序列化方案,并移除Jackson依赖;
parent
14555f67
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
8 deletions
doc/XXL-JOB官方文档.md
xxl-job-core/src/main/java/com/xxl/job/core/thread/TriggerCallbackThread.java
xxl-job-core/src/main/java/com/xxl/job/core/util/FileUtil.java
doc/XXL-JOB官方文档.md
View file @
80b544b5
## 《分
布式任务调度平台XXL-JOB》
## 《分
布式任务调度平台XXL-JOB》
...
...
@@ -1461,6 +1461,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
31、调度中心-执行器通讯模型统一,双向RPC切换为Netty;
-
32、任务暂停、删除优化,避免quartz delete不完整导致任务脏数据;
-
32、quartz misfire 配置优化,计划改为0;
-
33、新增状态列,支持筛选;
...
...
xxl-job-core/src/main/java/com/xxl/job/core/thread/TriggerCallbackThread.java
View file @
80b544b5
...
...
@@ -189,7 +189,7 @@ public class TriggerCallbackThread {
// ---------------------- fail-callback file ----------------------
private
static
String
failCallbackFilePath
=
XxlJobFileAppender
.
getLogPath
().
concat
(
File
.
separator
).
concat
(
"callbacklog"
);
private
static
String
failCallbackFilePath
=
XxlJobFileAppender
.
getLogPath
().
concat
(
File
.
separator
).
concat
(
"callbacklog"
)
.
concat
(
File
.
separator
)
;
private
static
String
failCallbackFileName
=
failCallbackFilePath
.
concat
(
"xxl-job-callback-{x}"
).
concat
(
".log"
);
private
void
appendFailCallbackFile
(
List
<
HandleCallbackParam
>
callbackParamList
){
...
...
xxl-job-core/src/main/java/com/xxl/job/core/util/FileUtil.java
View file @
80b544b5
...
...
@@ -52,12 +52,7 @@ public class FileUtil {
// file
if
(!
file
.
exists
())
{
try
{
file
.
createNewFile
();
}
catch
(
IOException
e
)
{
logger
.
error
(
e
.
getMessage
(),
e
);
return
;
}
file
.
getParentFile
().
mkdirs
();
}
// append file content
...
...
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