Ofir Sonsino | 9dfd7e2 | 2017-09-20 13:20:42 +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 | |
| 31 | org.quartz.dataSource.myDS.driver = com.mysql.jdbc.Driver |
| 32 | org.quartz.dataSource.myDS.URL = jdbc:mysql://localhost:3306/vid_portal |
| 33 | org.quartz.dataSource.myDS.user = euser |
| 34 | org.quartz.dataSource.myDS.password = euser |
| 35 | org.quartz.dataSource.myDS.maxConnections = 5 |
| 36 | org.quartz.dataSource.myDS.validationQuery=select 0 from dual |