44 lines
1.9 KiB
Properties
44 lines
1.9 KiB
Properties
#============================================================================
|
|
# Configure Main Scheduler Properties
|
|
#============================================================================
|
|
|
|
org.quartz.scheduler.instanceName = AKKA_SCHEDULER
|
|
org.quartz.scheduler.instanceId = AUTO
|
|
|
|
#============================================================================
|
|
# Configure ThreadPool
|
|
#============================================================================
|
|
|
|
org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
|
|
org.quartz.threadPool.threadCount = 3
|
|
org.quartz.threadPool.threadPriority = 5
|
|
|
|
#============================================================================
|
|
# Configure JobStore
|
|
#============================================================================
|
|
|
|
org.quartz.jobStore.misfireThreshold = 60000
|
|
org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore
|
|
|
|
#org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
|
|
#org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
|
|
#org.quartz.jobStore.useProperties = false
|
|
#org.quartz.jobStore.dataSource = myDS
|
|
#org.quartz.jobStore.tablePrefix = QRTZ_
|
|
#org.quartz.jobStore.isClustered = false
|
|
|
|
#============================================================================
|
|
# Configure Datasources
|
|
#============================================================================
|
|
|
|
#org.quartz.dataSource.myDS.driver = org.postgresql.Driver
|
|
#org.quartz.dataSource.myDS.URL = jdbc:postgresql://localhost/dev
|
|
#org.quartz.dataSource.myDS.user = jhouse
|
|
#org.quartz.dataSource.myDS.password =
|
|
#org.quartz.dataSource.myDS.maxConnections = 5
|
|
|
|
#============================================================================
|
|
# Configure Plugins
|
|
#============================================================================
|
|
|
|
#org.quartz.plugin.triggHistory.class = org.quartz.plugins.history.LoggingJobHistoryPlugin
|