Aharoni, Pavel (pa0916) | ca3cb01 | 2018-10-22 15:29:57 +0300 | [diff] [blame^] | 1 | #################################################################################
|
| 2 | # Quartz configurations for Quantum Work Flow #
|
| 3 | #################################################################################
|
| 4 |
|
| 5 | org.quartz.scheduler.instanceId = AUTO
|
| 6 |
|
| 7 | #################################################################################
|
| 8 | # Main configurations
|
| 9 | org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
|
| 10 | org.quartz.threadPool.threadCount = 30
|
| 11 |
|
| 12 | ============================================================================
|
| 13 | # Configure JobStore
|
| 14 | #============================================================================
|
| 15 |
|
| 16 | org.quartz.jobStore.misfireThreshold = 60000
|
| 17 |
|
| 18 | org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
|
| 19 | org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
|
| 20 | org.quartz.jobStore.useProperties = false
|
| 21 | #org.quartz.jobStore.dataSource = myDS
|
| 22 | org.quartz.jobStore.tablePrefix = FN_QZ_
|
| 23 |
|
| 24 | org.quartz.jobStore.isClustered = true
|
| 25 | org.quartz.jobStore.clusterCheckinInterval = 20000
|
| 26 |
|
| 27 | #============================================================================
|
| 28 | # Configure Datasources
|
| 29 | #============================================================================
|
| 30 |
|