Quartz Scheduler Configuration Guide : JDBC JobStoreTX Configuration
JDBC JobStoreTX Configuration
JDBCJobStore is used to store scheduling information (job, triggers and calendars) within a relational database. There are actually two separate JDBCJobStore classes that you can select between, depending on the transactional behavior you need.
JobStoreTX manages all transactions itself by calling commit() (or rollback()) on the database connection after every action (such as the addition of a job). JDBCJobStore is appropriate if you are using Quartz in a stand-alone application or within a servlet container if the application is not using JTA transactions.
The JobStoreTX is selected by setting the org.quartz.jobStore.class property as such:
org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
JobStoreTX can be tuned with the following properties:
Property Name
Required
Type
Default Value
org.quartz.jobStore.driverDelegateClass
yes
string
null
org.quartz.jobStore.dataSource
yes
string
null
org.quartz.jobStore.tablePrefix
no
string
"QRTZ_"
org.quartz.jobStore.useProperties
no
boolean
false
org.quartz.jobStore.misfireThreshold
no
int
60000
org.quartz.jobStore.isClustered
no
boolean
false
org.quartz.jobStore.clusterCheckinInterval
no
long
15000
org.quartz.jobStore.maxMisfiresToHandle AtATime
no
int
20
org.quartz.jobStore.dontSetAutoCommitFalse
no
boolean
false
org.quartz.jobStore.selectWithLockSQL
no
string
"SELECT * FROM {0}LOCKS WHERE SCHED_NAME = {1} AND LOCK_NAME = ? FOR UPDATE"
org.quartz.jobStore.txIsolationLevelSerializable
no
boolean
false
org.quartz.jobStore.acquireTriggersWithinLock
no
boolean
false (or true - see doc below)
org.quartz.jobStore.lockHandler.class
no
string
null
org.quartz.jobStore.driverDelegateInitString
no
string
null
org.quartz.jobStore.driverDelegateClass
Driver delegates understand the dialects of various database systems. Possible choices include:
*org.quartz.impl.jdbcjobstore.StdJDBCDelegate (for fully JDBC-compliant drivers)
*org.quartz.impl.jdbcjobstore.MSSQLDelegate (for Microsoft SQL Server, and Sybase)
*org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
*org.quartz.impl.jdbcjobstore.WebLogicDelegate (for WebLogic drivers)
*org.quartz.impl.jdbcjobstore.oracle.OracleDelegate
*org.quartz.impl.jdbcjobstore.oracle.WebLogicOracleDelegate (for Oracle drivers used within WebLogic)
*org.quartz.impl.jdbcjobstore.oracle.weblogic.WebLogicOracleDelegate (for Oracle drivers used within WebLogic)
*org.quartz.impl.jdbcjobstore.CloudscapeDelegate
*org.quartz.impl.jdbcjobstore.DB2v6Delegate
*org.quartz.impl.jdbcjobstore.DB2v7Delegate
*org.quartz.impl.jdbcjobstore.DB2v8Delegate
*org.quartz.impl.jdbcjobstore.HSQLDBDelegate
*org.quartz.impl.jdbcjobstore.PointbaseDelegate
*org.quartz.impl.jdbcjobstore.SybaseDelegate
Note that many databases are known to work with the StdJDBCDelegate, while others are known to work with delegates for other databases. Derby, for example, works well with the Cloudscape delegate.
org.quartz.jobStore.dataSource
The value of this property must be the name of one the DataSources defined in the configuration properties file. For more information, see DataSource Configuration.
org.quartz.jobStore.tablePrefix
JDBCJobStore’s tablePrefix property is a string equal to the prefix given to the Quartz tables that were created in your database. You can have multiple sets of Quartz tables within the same database if they use different table prefixes.
org.quartz.jobStore.useProperties
The useProperties flag instructs JDBCJobStore that all values in JobDataMaps will be Strings, and therefore can be stored as name-value pairs, rather than storing more complex objects in their serialized form in the BLOB column. This is can be handy, as you avoid the class versioning issues that can arise from serializing your non-String classes into a BLOB.
org.quartz.jobStore.misfireThreshold
The number of milliseconds the scheduler will allow a trigger to pass its next-fire-time by before being considered misfired. The default value (if you don't make an entry of this property in your configuration) is 60000 (60 seconds).
org.quartz.jobStore.isClustered
Set to true in order to turn on clustering features. This property must be set to rue if you are having multiple instances of Quartz use the same set of database tables. Otherwise data corruption and erratic behavior will result. For more information, see Cluster Configuration.
org.quartz.jobStore.clusterCheckinInterval
Set the frequency (in milliseconds) at which this instance "checks-in"* with the other instances of the cluster. Affects the quickness of detecting failed instances.
org.quartz.jobStore.maxMisfiresToHandleAtATime
The maximum number of misfired triggers the jobstore will handle in a given pass. Handling many (more than a couple dozen) at once can cause the database tables to be locked long enough that the performance of firing other (not yet misfired) triggers may be hampered.
org.quartz.jobStore.dontSetAutoCommitFalse
Setting this parameter to true tells Quartz not to call setAutoCommit(false) on connections obtained from the DataSource(s). This can be helpful in a few situations, such as if you have a driver that complains if it is called when it is already off. This property defaults to false, because most drivers require that setAutoCommit(false) is called.
org.quartz.jobStore.selectWithLockSQL
A SQL string that selects a row in the LOCKS table and places a lock on the row. If not set, the default is "SELECT * FROM {0}LOCKS WHERE SCHED_NAME = {1} AND LOCK_NAME = ? FOR UPDATE", which works for most databases. The "{0}" is replaced at run time with the TABLE_PREFIX that you configured above. The "{1}" is replaced with the scheduler's name.
org.quartz.jobStore.txIsolationLevelSerializable
A value of true tells Quartz (when using JobStoreTX or CMT) to call setTransactionIsolation(Connection.TRANSACTION_SERIALIZABLE) on JDBC connections. This can be helpful to prevent lock timeouts with some databases under high loads and running long-lasting transactions.
org.quartz.jobStore.acquireTriggersWithinLock
Whether or not the acquisition of next triggers to fire should occur within an explicit database lock. This was once necessary (in previous versions of Quartz) to avoid deadlocks with particular databases, but is no longer considered necessary. Hence the default value is false.
If org.quartz.scheduler.batchTriggerAcquisitionMaxCount is > 1 and JDBC JobStore is used, then this property must be set to true to avoid data corruption (as of Quartz 2.1.1, true is the default when batchTriggerAcquisitionMaxCount is > 1).
org.quartz.jobStore.lockHandler.class
The class name to be used to produce an instance of a org.quartz.impl.jdbcjobstore.Semaphore to be used for locking control on the job store data. This is an advanced configuration feature, which should not be used by most users. By default, Quartz will select the most appropriate (pre-bundled) Semaphore implementation to use. "org.quartz.impl.jdbcjobstore.UpdateLockRowSemaphore" QUARTZ-497 may be of interest to MS SQL Server users. See QUARTZ-441.
org.quartz.jobStore.driverDelegateInitString
A pipe-delimited list of properties (and their values) that can be passed to the DriverDelegate during initialization time.
The format of the string is as follows:
"settingName=settingValue|otherSettingName=otherSettingValue|..."
The StdJDBCDelegate and all of its descendants (all delegates that ship with Quartz) support a property called triggerPersistenceDelegateClasses, which can be set to a comma-separated list of classes that implement the TriggerPersistenceDelegate interface for storing custom trigger types. See the Java classes SimplePropertiesTriggerPersistenceDelegateSupport and SimplePropertiesTriggerPersistenceDelegateSupport for examples of writing a persistence delegate for a custom trigger.
Copyright © 2010-2016 Software AG, Darmstadt, Germany.

Product Logo |   Feedback