quartz-cluster.properties 1.2 KB

12345678910111213141516171819202122232425
  1. #============================================================================
  2. # Configure Main Scheduler Properties
  3. #============================================================================
  4. org.quartz.scheduler.instanceName = ClusteredScheduler
  5. org.quartz.scheduler.instanceId = AUTO
  6. #============================================================================
  7. # Configure ThreadPool
  8. #============================================================================
  9. org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
  10. org.quartz.threadPool.threadCount = 5
  11. org.quartz.threadPool.threadPriority = 5
  12. org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread = true
  13. #============================================================================
  14. # Configure JobStore
  15. #============================================================================
  16. org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
  17. org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.StdJDBCDelegate
  18. org.quartz.jobStore.misfireThreshold = 60000
  19. org.quartz.jobStore.useProperties = false
  20. org.quartz.jobStore.tablePrefix = QRTZ_
  21. org.quartz.jobStore.isClustered = true
  22. org.quartz.jobStore.clusterCheckinInterval = 15000