Merge "align logic to new so api"
[vid.git] / vid-app-common / src / test / resources / WEB-INF / conf / quartz.properties
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 = org.mariadb.jdbc.Driver
32 org.quartz.dataSource.myDS.URL = jdbc:mariadb://localhost:3306/vid_openecomp_epsdk
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