blob: 81f2bbc3e72e43f1f0cb2ea6ae62654c7f330d35 [file] [log] [blame]
Ofir Sonsino9dfd7e22017-09-20 13:20:42 +03001#################################################################################
2# Quartz configurations for Quantum Work Flow #
3#################################################################################
4
5org.quartz.scheduler.instanceId = AUTO
6
7#################################################################################
8# Main configurations
9org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
10org.quartz.threadPool.threadCount = 30
11
12============================================================================
13# Configure JobStore
14#============================================================================
15
16org.quartz.jobStore.misfireThreshold = 60000
17
18org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
19org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
20org.quartz.jobStore.useProperties = false
21#org.quartz.jobStore.dataSource = myDS
22org.quartz.jobStore.tablePrefix = FN_QZ_
23
24org.quartz.jobStore.isClustered = true
25org.quartz.jobStore.clusterCheckinInterval = 20000
26
27#============================================================================
28# Configure Datasources
29#============================================================================
30
31org.quartz.dataSource.myDS.driver = com.mysql.jdbc.Driver
32org.quartz.dataSource.myDS.URL = jdbc:mysql://localhost:3306/vid_portal
33org.quartz.dataSource.myDS.user = euser
34org.quartz.dataSource.myDS.password = euser
35org.quartz.dataSource.myDS.maxConnections = 5
36org.quartz.dataSource.myDS.validationQuery=select 0 from dual