quartz.properties 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. org.quartz.scheduler.skipUpdateCheck = true
  2. #============================================================================
  3. # Configure Main Scheduler Properties
  4. #============================================================================
  5. org.quartz.scheduler.instanceName = RekonScheduler
  6. org.quartz.scheduler.instanceId = AUTO
  7. #============================================================================
  8. # Configure ThreadPool
  9. #============================================================================
  10. org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
  11. org.quartz.threadPool.threadCount = 10
  12. org.quartz.threadPool.threadPriority = 5
  13. #============================================================================
  14. # Configure JobStore
  15. #============================================================================
  16. #org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore
  17. org.quartz.jobStore.misfireThreshold = 60000
  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 = java:comp/env/jdbc/db2/mwapp_rekon_ds
  22. org.quartz.jobStore.tablePrefix = MWAPP.QRTZ_
  23. org.quartz.jobStore.isClustered = true
  24. org.quartz.jobStore.clusterCheckinInterval = 20000
  25. #============================================================================
  26. # Configure Application Server DataSources
  27. #============================================================================
  28. org.quartz.dataSource.jdbcApp.jndiURL = java:comp/env/jdbc/db2/mwapp_rekon_ds