1. Plugin Configuration
1.1. Configuring the plugin
The plugin supports configuration settings defined in grails-app/conf/application.yml.
quartz:
autoStartup: true
Currently supported options:
-
autoStartupControls automatic startup of the Quartz scheduler during application bootstrap (default: true). -
jdbcStoreSet to true if you want Quartz to persist jobs in your DB (default: false). You’ll also need to provide aquartz.propertiesfile and make sure that required tables exist in your db (see the Clustering section below for the sample config and automatic tables creation using Hibernate).
1.1.1. Logging
A log is auto-injected into your task Job class without having to enable it. To set the logging level, add something like this to your grails-app/conf/Config.groovy log4j configuration.
debug 'grails.app.jobs'
1.1.2. Hibernate Sessions and Jobs
Jobs are configured by default to have Hibernate Session bounded to thread each time a job is executed. This is required if you are using Hibernate, which requires open session (such as lazy loading of collections) or working with domain objects with unique persistent constraint (it uses Hibernate Session behind the scene). If you want to override this behavior (rarely useful) you can use sessionRequired property:
static sessionRequired = false
1.1.3. Configuring concurrent execution
By default, jobs are executed in concurrent fashion, so new job execution can start even if the previous execution of the same job is still running. If you want to override this behavior, you can use concurrent property. In this case Quartz’s StatefulJob will be used (you can find more info about it here).
static concurrent = false
1.1.4. Configuring Job Enabled
By default, all jobs are considered enabled. In some cases it may be desired to temporarily disable a job. This can be done by overriding the jobEnabled property behavior.
static jobEnabled = false
1.1.5. Configuring description
Quartz allows for each job to have a short description. This may be configured by adding a description field to your Job. The description can be accessed at runtime using the JobManagerService and inspecting the JobDetail object.
static description = 'Example Job Description'
1.1.6. Clustering
Quartz plugin doesn’t support clustering out-of-the-box now. However, you could use a standard Quartz clustering configuration. You’ll also need to set jdbcStore configuration option to true.
There are also two parameters for configuring store/clustering on jobs, volatility and durability (both are true by default) and one for triggers, volatility (also true by default). A volatile job and trigger will not persist between Quartz runs, and a durable job will live even when there are no triggers referring to it.
Read Quartz documentation for more information on clustering and job stores as well as volatility and durability.
Now that the plugin supports Quartz 2.1.x, you can use current versions of open source Terracotta see https://github.com/rvanderwerf/terracotta-grails-demo for an example app.
1.1.7. Recovering
Since 0.4.2 recovering from a 'recovery' or 'fail-over' situation is supported with the requestsRecovery job-level flag (false by default).
If a job "requests recovery", and it is executing during a 'hard shutdown' of the scheduler, (i.e., the process it is running within crashes, or the machine is shut off), then it is re-executed when the scheduler is started again. In this case, the JobExecutionContext.isRecovering() method will return true.