|
@@ -4,22 +4,23 @@
|
4
|
4
|
#
|
5
|
5
|
|
6
|
6
|
org.quartz.scheduler.instanceName: DefaultQuartzScheduler
|
|
7
|
+org.quartz.scheduler.instanceId: AUTO
|
7
|
8
|
org.quartz.scheduler.rmi.export: false
|
8
|
9
|
org.quartz.scheduler.rmi.proxy: false
|
9
|
10
|
org.quartz.scheduler.wrapJobExecutionInUserTransaction: false
|
10
|
11
|
|
11
|
12
|
org.quartz.threadPool.class: org.quartz.simpl.SimpleThreadPool
|
12
|
|
-org.quartz.threadPool.threadCount: 10
|
|
13
|
+org.quartz.threadPool.threadCount: 15
|
13
|
14
|
org.quartz.threadPool.threadPriority: 5
|
14
|
15
|
org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread: true
|
15
|
16
|
|
16
|
17
|
org.quartz.jobStore.misfireThreshold: 60000
|
|
18
|
+org.quartz.jobStore.maxMisfiresToHandleAtATime: 1
|
17
|
19
|
|
18
|
20
|
#org.quartz.jobStore.class: org.quartz.simpl.RAMJobStore
|
19
|
21
|
|
20
|
22
|
# for cluster
|
21
|
23
|
org.quartz.jobStore.tablePrefix = XXL_JOB_QRTZ_
|
22
|
|
-org.quartz.scheduler.instanceId: AUTO
|
23
|
24
|
org.quartz.jobStore.class: org.quartz.impl.jdbcjobstore.JobStoreTX
|
24
|
25
|
org.quartz.jobStore.isClustered: true
|
25
|
|
-org.quartz.jobStore.clusterCheckinInterval: 1000
|
|
26
|
+org.quartz.jobStore.clusterCheckinInterval: 5000
|