| 1234567891011121314151617181920212223242526272829303132333435363738 |
- 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 = jdbcApp
- org.quartz.jobStore.tablePrefix = MWAPP.QRTZ_
- org.quartz.jobStore.isClustered = true
- org.quartz.jobStore.clusterCheckinInterval = 20000
- #============================================================================
- # Configure Application Server DataSources
- #============================================================================
- #java:comp/env/
- #org.quartz.dataSource.jdbcApp.jndiURL = jdbc/db2/mwapp_rekon_ds
- org.quartz.dataSource.jdbcApp.jndiURL = jdbc/db2/mwapp_mwapp_ds
|