Job queue for processing workloads asynchronously across multiple nodes.
- Queue, pause, resume, cancel jobs
- Queue delayed jobs
- Job processor can be run on multiple nodes
- Multiple drivers available (using Valkey/Redis, Postgres
- Graceful handling of SIGTERM, SIGINT
- Job scheduler for crontab style triggering of jobs
- Customizable retry support, with default implementation using exponential jitter
- Middleware support to allow for additional customisation
- Support for metrics and distributed tracing
// create job queue stored in local memory, that can run four jobs concurrently
let jobQueue = JobQueue(
.memory,
logger: logger
)
// Define email job parameters. Its job name has to be unique
struct SendEmailJobParameters: JobParameters {
static let jobName = "SendEmail"
let to: String
let subject: String
let body: String
}
// Register jobs with job queue
jobQueue.registerJob(parameters: SendEmailJobParameters.self) { parameters, context in
try await myEmailService.sendEmail(
to: parameters.to,
subject: parameters.subject,
body: parameters.body
)
}
// Push instance of job onto queue
jobQueue.push(SendEmailJobParameters(
to: "Ellen",
subject:"Hello",
body: "Hi there!"
))
You can create a JobQueueProcessor
to process jobs added to yout JobQueue
. JobQueueProcessor
conforms to Service
and can be used with ServiceGroup
from ServiceLifecycle
.
let serviceGroup = ServiceGroup(
configuration: .init(
services: [jobQueue.processor(options: .init(numWorkers: 4))],
gracefulShutdownSignals: [.sigterm, .sigint],
logger: Logger(label: "JobQueueService")
)
)
try await serviceGroup.run()
Or it can be added as a service attached to a Hummingbird application
let app = Application(router: router, services: [jobQueue.processor(options: .init(numWorkers: 4))])
When the JobQueueProcessor
service is running it processes jobs as they appear on the queue. The numWorkers
field in the options initializer indicates how many jobs it will run concurrently.
You can find documentation for Jobs here. The hummingbird-examples repository has a number of examples of different uses of the library.