quartz.properties 1.2 KB

1234567891011121314151617181920212223242526272829
  1. #============================================================================
  2. # Configure Main Scheduler Properties
  3. #============================================================================
  4. org.quartz.scheduler.instanceName = edu_saas
  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 = 25
  11. org.quartz.threadPool.threadPriority = 5
  12. #============================================================================
  13. # Configure JobStore
  14. #============================================================================
  15. org.quartz.jobStore.misfireThreshold = 60000
  16. org.quartz.jobStore.class = org.springframework.scheduling.quartz.LocalDataSourceJobStore
  17. org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
  18. #org.quartz.jobStore.useProperties = false
  19. #org.quartz.jobStore.dataSource = myDS
  20. org.quartz.jobStore.tablePrefix = qrtz_
  21. org.quartz.jobStore.isClustered = true
  22. org.quartz.jobStore.clusterCheckinInterval = 20000