| 123456789101112131415161718192021222324252627282930313233343536 |
- org.quartz.scheduler.skipUpdateCheck = true
- #============================================================================
- # Configure Main Scheduler Properties
- #============================================================================
- org.quartz.scheduler.instanceName = RekonScheduler
- org.quartz.scheduler.instanceId = AUTO
- #============================================================================
- # Configure ThreadPool
- #============================================================================
- org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
- org.quartz.threadPool.threadCount = 10
- org.quartz.threadPool.threadPriority = 5
- #============================================================================
- # Configure JobStore
- #============================================================================
- #org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore
- org.quartz.jobStore.misfireThreshold = 60000
- org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
- org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
- org.quartz.jobStore.useProperties = false
- org.quartz.jobStore.dataSource = java:comp/env/jdbc/db2/mwapp_rekon_ds
- org.quartz.jobStore.tablePrefix = MWAPP.QRTZ_
- org.quartz.jobStore.isClustered = true
- org.quartz.jobStore.clusterCheckinInterval = 20000
- #============================================================================
- # Configure Application Server DataSources
- #============================================================================
- org.quartz.dataSource.jdbcApp.jndiURL = java:comp/env/jdbc/db2/mwapp_rekon_ds
|