You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by we...@apache.org on 2022/09/17 06:25:27 UTC

[dolphinscheduler] branch 3.0.1-prepare updated: Fix quartz threadPriority config name error (#11596) (#12015)

This is an automated email from the ASF dual-hosted git repository.

wenjun pushed a commit to branch 3.0.1-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/3.0.1-prepare by this push:
     new a615e6ee3d Fix quartz threadPriority config name error (#11596) (#12015)
a615e6ee3d is described below

commit a615e6ee3db4ee3d45a89142437926bcace7e396
Author: Wenjun Ruan <we...@apache.org>
AuthorDate: Sat Sep 17 14:25:20 2022 +0800

    Fix quartz threadPriority config name error (#11596) (#12015)
    
    * Fix quartz threadPriority config name error
    
    * Add batchTriggerAcquisitionMaxCount config
    
    (cherry picked from commit 8886d5a12640eba5ec0c3c27739df36e7accb78d)
---
 dolphinscheduler-master/src/main/resources/application.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dolphinscheduler-master/src/main/resources/application.yaml b/dolphinscheduler-master/src/main/resources/application.yaml
index 9f191ccd25..14b98a0fe8 100644
--- a/dolphinscheduler-master/src/main/resources/application.yaml
+++ b/dolphinscheduler-master/src/main/resources/application.yaml
@@ -54,7 +54,7 @@ spring:
     jdbc:
       initialize-schema: never
     properties:
-      org.quartz.threadPool:threadPriority: 5
+      org.quartz.threadPool.threadPriority: 5
       org.quartz.jobStore.isClustered: true
       org.quartz.jobStore.class: org.quartz.impl.jdbcjobstore.JobStoreTX
       org.quartz.scheduler.instanceId: AUTO
@@ -66,6 +66,7 @@ spring:
       org.quartz.threadPool.makeThreadsDaemons: true
       org.quartz.threadPool.threadCount: 25
       org.quartz.jobStore.misfireThreshold: 60000
+      org.quartz.scheduler.batchTriggerAcquisitionMaxCount: 1
       org.quartz.scheduler.makeSchedulerThreadDaemon: true
       org.quartz.jobStore.driverDelegateClass: org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
       org.quartz.jobStore.clusterCheckinInterval: 5000