Jobs
Defining and managing background jobs in Orionjs
Jobs in Orionjs enable you to execute background tasks, schedule recurring operations, and handle asynchronous processing. Powered by the @orion-js/dogs
package, jobs provide a robust way to manage both recurring and event-driven background operations.
Installation
Defining Jobs Controllers
The recommended way to define jobs in Orionjs is to use the @Jobs()
decorator on a class and the job-specific decorators on methods:
With this approach:
- The class is decorated with
@Jobs()
to mark it as a job controller - Each job is defined as a class property using
createRecurrentJob
orcreateEventJob
with its specific decorator (@RecurrentJob
or@EventJob
) - Job parameters are validated based on the schema provided in the
params
option - You can use dependency injection with
@Inject(() => Service)
- The class can also include regular methods that aren’t jobs
Types of Jobs
Orionjs supports two types of jobs:
1. Recurrent Jobs
Jobs that run at specified intervals or on a schedule:
2. Event Jobs
Jobs that run on-demand when triggered by an event:
Job Creation Options
RecurrentJob Options
Option | Type | Description |
---|---|---|
runEvery | number | string | Milliseconds between runs or a string like ‘1d’, ‘4h’, etc. Ignored if getNextRun is provided. |
getNextRun | Function | Function returning a Date for the next execution. Takes precedence over runEvery . |
priority | number | Job priority. Higher numbers get executed first (default: 100). |
onError | Function | Called if the job fails. Can be used to retry or dismiss the job. |
onStale | Function | Called if the job locktime is expired. |
saveExecutionsFor | number | Time in milliseconds to keep job execution history (default: 1 week). Set to 0 to disable. |
resolve | Function | The function that contains the job’s logic. |
EventJob Options
Option | Type | Description |
---|---|---|
params | Object | Schema | Schema for validating job parameters. |
onError | Function | Called if the job fails. Can be used to retry or dismiss the job. |
onStale | Function | Called if the job locktime is expired. |
saveExecutionsFor | number | Time in milliseconds to keep job execution history (default: 1 week). Set to 0 to disable. |
resolve | Function | The function that contains the job’s logic and receives validated params. |
Starting Workers
In your application setup (typically in your main file), you start workers to process jobs:
Scheduling Event Jobs
Trigger an event job to run:
Job Execution Context
The job’s resolve
function receives additional parameters:
Error Handling
Jobs support sophisticated error handling:
Monitoring Jobs
You can monitor job status and history:
Best Practices
-
Keep Jobs Idempotent: Design jobs so they can be safely re-executed without side effects.
-
Use Parameters Validation: Define schemas for job parameters to ensure they’re valid.
-
Handle Errors Properly: Implement robust error handling with appropriate retry strategies.
-
Set Realistic Lock Times: Ensure the lockTime is longer than a job’s expected execution time.
-
Monitor Job Performance: Keep track of job durations to optimize processing.
-
Organize by Domain: Group related jobs in domain-specific controller classes.
-
Test Jobs Thoroughly: Write unit tests for job logic to ensure reliability.
-
Check Job Status: Implement health checks to monitor job processing.
Was this page helpful?