Batched Jobs
cbq allows for tracking jobs as part of a batch. The main use case for batched jobs is to dispatch additional jobs when a batch has completed successfully, completed with failures, or completed in any fashion. (Think try
, catch
, finally
.)
Setup
To utilize batches, you first need to set up a Batch repository. Batches are tracked separate from jobs. cbq utilizes a database repository to track batches regardless of what provider your Job's connection uses.
A database migration is provided in resources/database/migrations/2000_01_01_000001_create_cbq_batches_table.cfc
. You can copy this to your own project to run via cfmigrations or you can reference the migration or SQL scripts below.
You can customize the batch repository using the batchRepositoryProperties
of cbq's moduleSettings
. This is a struct with two properties you can set:
tableName
This defaults to cbq_batches
. You can set this to any unique table name in your datasource.
queryOptions
This is a struct of options that will be passed to queryExecute
. The most common use case for this property is to specify a specific datasource to use for the batches table. This defaults to an empty struct ({}
).
Defining Batches
To create a batch, you can get an instance of PendingBatch@cbq
from WireBox or use the cbq.batch()
helper method.
Once you have a PendingBatch
instance, you can add jobs to the batch using the add
method.
add
Adds a single Job or an array of Jobs to a PendingBatch.
Arguments | Type | Required | Default | Description |
---|---|---|---|---|
job | string | Job | array<Job> |
| The Job WireBox id, Job instance, or array of Job instances to add to the PendingBatch. | |
properties | Struct |
|
| A struct of properties for the Job instance. (Only used when providing a Job WireBox id.) |
chain | array<Job> |
|
| An array of Jobs to chain after this Job. (Only used when providing a Job WireBox id.) |
queue | string |
| The queue the Job belongs to. (Only used when providing a Job WireBox id.) | |
connection | string |
| The Connection to dispatch the Job on. (Only used when providing a Job WireBox id.) | |
backoff | numeric |
| The amount of time, in seconds, to wait between attempting Jobs. (Only used when providing a Job WireBox id.) | |
timeout | numeric |
| The amount of time, in seconds, to wait before treating a Job as erroring. (Only used when providing a Job WireBox id.) | |
maxAttempts | numeric |
| The maximum amount of attempts of a Job before treating the Job as failed. (Only used when providing a Job WireBox id.) |
Return: The PendingBatch to be dispatched.
The primary use case of batches is to dispatch lifecycle jobs when the batch has completed and if the batch completed successfully or completed with failures. These jobs can be configured using the then
, catch
, and finally
methods.
then
Defines a Job to be dispatched when all the jobs in the batch finishes successfully.
Arguments | Type | Required | Default | Description |
---|---|---|---|---|
job | string | Job |
| The Job WireBox id or Job instance to execute if all the jobs in the Batch complete successfully. | |
properties | Struct |
|
| A struct of properties for the Job instance. (Only used when providing a Job WireBox id.) |
chain | array<Job> |
|
| An array of Jobs to chain after this Job. (Only used when providing a Job WireBox id.) |
queue | string |
| The queue the Job belongs to. (Only used when providing a Job WireBox id.) | |
connection | string |
| The Connection to dispatch the Job on. (Only used when providing a Job WireBox id.) | |
backoff | numeric |
| The amount of time, in seconds, to wait between attempting Jobs. (Only used when providing a Job WireBox id.) | |
timeout | numeric |
| The amount of time, in seconds, to wait before treating a Job as erroring. (Only used when providing a Job WireBox id.) | |
maxAttempts | numeric |
| The maximum amount of attempts of a Job before treating the Job as failed. (Only used when providing a Job WireBox id.) |
Return: The PendingBatch
instance.
catch
Defines a Job to be dispatched the first time a job in the Batch fails.
Arguments | Type | Required | Default | Description |
---|---|---|---|---|
job | string | Job |
| The Job WireBox id or Job instance to execute the first time a job in the Batch fails. | |
properties | Struct |
|
| A struct of properties for the Job instance. (Only used when providing a Job WireBox id.) |
chain | array<Job> |
|
| An array of Jobs to chain after this Job. (Only used when providing a Job WireBox id.) |
queue | string |
| The queue the Job belongs to. (Only used when providing a Job WireBox id.) | |
connection | string |
| The Connection to dispatch the Job on. (Only used when providing a Job WireBox id.) | |
backoff | numeric |
| The amount of time, in seconds, to wait between attempting Jobs. (Only used when providing a Job WireBox id.) | |
timeout | numeric |
| The amount of time, in seconds, to wait before treating a Job as erroring. (Only used when providing a Job WireBox id.) | |
maxAttempts | numeric |
| The maximum amount of attempts of a Job before treating the Job as failed. (Only used when providing a Job WireBox id.) |
Return: The PendingBatch
instance.
finally
Defines a Job to be dispatched after all the jobs in the Batch have executed successfully or failed.
Arguments | Type | Required | Default | Description |
---|---|---|---|---|
job | string | Job |
| The Job WireBox id or Job instance to execute after all the jobs in the Batch have executed successfully or failed. | |
properties | Struct |
|
| A struct of properties for the Job instance. (Only used when providing a Job WireBox id.) |
chain | array<Job> |
|
| An array of Jobs to chain after this Job. (Only used when providing a Job WireBox id.) |
queue | string |
| The queue the Job belongs to. (Only used when providing a Job WireBox id.) | |
connection | string |
| The Connection to dispatch the Job on. (Only used when providing a Job WireBox id.) | |
backoff | numeric |
| The amount of time, in seconds, to wait between attempting Jobs. (Only used when providing a Job WireBox id.) | |
timeout | numeric |
| The amount of time, in seconds, to wait before treating a Job as erroring. (Only used when providing a Job WireBox id.) | |
maxAttempts | numeric |
| The maximum amount of attempts of a Job before treating the Job as failed. (Only used when providing a Job WireBox id.) |
Return: The PendingBatch
instance.
Dispatching Batches
A PendingBatch
must be dispatched before any of the jobs contained in it are dispatched. This is done using the dispatch
method on the PendingBatch
.
dispatch
Dispatches a PendingBatch and all the Jobs it contains.
Arguments | Type | Required | Default | Description |
---|---|---|---|---|
No arguments |
Return: A Batch
instance created from this PendingBatch
.