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
57d6cd9e
authored
Feb 18, 2019
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
admin rpc timeout change to 5000ms;
thread name optimize
parent
85bf6569
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
1 deletions
xxl-job-admin/src/main/java/com/xxl/job/admin/core/schedule/XxlJobDynamicScheduler.java
xxl-job-admin/src/main/java/com/xxl/job/admin/core/thread/JobFailMonitorHelper.java
xxl-job-admin/src/main/java/com/xxl/job/admin/core/thread/JobRegistryMonitorHelper.java
xxl-job-core/src/main/java/com/xxl/job/core/thread/ExecutorRegistryThread.java
xxl-job-core/src/main/java/com/xxl/job/core/thread/JobLogFileCleanThread.java
xxl-job-core/src/main/java/com/xxl/job/core/thread/TriggerCallbackThread.java
xxl-job-admin/src/main/java/com/xxl/job/admin/core/schedule/XxlJobDynamicScheduler.java
View file @
57d6cd9e
...
@@ -144,7 +144,7 @@ public final class XxlJobDynamicScheduler {
...
@@ -144,7 +144,7 @@ public final class XxlJobDynamicScheduler {
LoadBalance
.
ROUND
,
LoadBalance
.
ROUND
,
ExecutorBiz
.
class
,
ExecutorBiz
.
class
,
null
,
null
,
10
000
,
5
000
,
address
,
address
,
XxlJobAdminConfig
.
getAdminConfig
().
getAccessToken
(),
XxlJobAdminConfig
.
getAdminConfig
().
getAccessToken
(),
null
,
null
,
...
...
xxl-job-admin/src/main/java/com/xxl/job/admin/core/thread/JobFailMonitorHelper.java
View file @
57d6cd9e
...
@@ -98,6 +98,7 @@ public class JobFailMonitorHelper {
...
@@ -98,6 +98,7 @@ public class JobFailMonitorHelper {
}
}
});
});
monitorThread
.
setDaemon
(
true
);
monitorThread
.
setDaemon
(
true
);
monitorThread
.
setName
(
"xxl-job, admin JobFailMonitorHelper"
);
monitorThread
.
start
();
monitorThread
.
start
();
}
}
...
...
xxl-job-admin/src/main/java/com/xxl/job/admin/core/thread/JobRegistryMonitorHelper.java
View file @
57d6cd9e
...
@@ -90,6 +90,7 @@ public class JobRegistryMonitorHelper {
...
@@ -90,6 +90,7 @@ public class JobRegistryMonitorHelper {
}
}
});
});
registryThread
.
setDaemon
(
true
);
registryThread
.
setDaemon
(
true
);
registryThread
.
setName
(
"xxl-job, admin JobRegistryMonitorHelper"
);
registryThread
.
start
();
registryThread
.
start
();
}
}
...
...
xxl-job-core/src/main/java/com/xxl/job/core/thread/ExecutorRegistryThread.java
View file @
57d6cd9e
...
@@ -100,6 +100,7 @@ public class ExecutorRegistryThread extends Thread {
...
@@ -100,6 +100,7 @@ public class ExecutorRegistryThread extends Thread {
}
}
});
});
registryThread
.
setDaemon
(
true
);
registryThread
.
setDaemon
(
true
);
registryThread
.
setName
(
"xxl-job, executor ExecutorRegistryThread"
);
registryThread
.
start
();
registryThread
.
start
();
}
}
...
...
xxl-job-core/src/main/java/com/xxl/job/core/thread/JobLogFileCleanThread.java
View file @
57d6cd9e
...
@@ -101,6 +101,7 @@ public class JobLogFileCleanThread extends Thread {
...
@@ -101,6 +101,7 @@ public class JobLogFileCleanThread extends Thread {
}
}
});
});
localThread
.
setDaemon
(
true
);
localThread
.
setDaemon
(
true
);
localThread
.
setName
(
"xxl-job, executor JobLogFileCleanThread"
);
localThread
.
start
();
localThread
.
start
();
}
}
...
...
xxl-job-core/src/main/java/com/xxl/job/core/thread/TriggerCallbackThread.java
View file @
57d6cd9e
...
@@ -99,6 +99,7 @@ public class TriggerCallbackThread {
...
@@ -99,6 +99,7 @@ public class TriggerCallbackThread {
}
}
});
});
triggerCallbackThread
.
setDaemon
(
true
);
triggerCallbackThread
.
setDaemon
(
true
);
triggerCallbackThread
.
setName
(
"xxl-job, executor TriggerCallbackThread"
);
triggerCallbackThread
.
start
();
triggerCallbackThread
.
start
();
...
...
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