JoobQ
JoobQ is a fast, efficient asynchronous reliable job queue scheduler library processing. Jobs are submitted to a job queue, where they reside until they are able to be scheduled to run in a compute environment.
Features:
- [x] Priority queues based on number of workers
- [x] Reliable queue
- [x] Error Handling
- [x] Retry Jobs with automatic Delays
- [x] Cron Like Periodic Jobs
- [x] Delayed Jobs
- [x] Stop execution of workers
- [x] Jobs expiration
Help Wanted - [ ] CLI to manage queues and monitor server - [ ] Rest API: Rest api to schedule jobs - [ ] Throttle (Rate limit) - [ ] Approve Queue?: Jobs have to manually approved to execute
Installation
dependencies:
joobq:
github: azutoolkit/joobq
Then run:
shards install
Requirements
This project uses REDIS with the TimeSeries module loaded. The Redis TimeSeries is used to monitor stats of job execution the module is free for use and easy to configure. Follow the guidelines at redistimeseries.io
Loading and Configuring Redis TimeSeries
Use DUPLICATE POLICY FIRST to ignore duplicate stats entries
redis-server --loadmodule ./redistimeseries.so DUPLICATE_POLICY FIRST
Configuration Options
require "joobq"
Environment variables
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_POOL_SIZE=50
REDIS_TIMEOUT=0.2
Defining Queues
Defining Queues: Queues are of type Hash(String, Queue(T))
where the name of the key matches the name of the Queue.
Properties
- Name:
queue:email
- Number Workers: 10
module JoobQ
QUEUES = { "queue:email" => Queue(EmailJob).new("queue:email", 10)}
end
Jobs
To define Jobs, must include the JoobQ::Job module, and must implement perform method
struct EmailJob
include JoobQ::Job
# Name of the queue to be processed by
@queue = "default"
# Number Of Retries for this job
@retries = 0
# Job Expiration
@expires = 1.days.total_seconds.to_i
# Initialize as normal with or without named tuple arguments
def initialize(email_address : String)
end
def perform
# Logic to handle job execution
end
end
Executing Job
EmailJob.perform(email_address: "john.doe@example.com")
EmailJob.perform(within: 1.hour, email_address: "john.doe@example.com")
Defining And Scheduling Recurring Jobs
module JoobQ
scheduler.register do
cron "5 4 * * *" { Somejob.perform }
delay job_instance, for: 1.minute
every 1.hour, EmailJob, email_address: "notify@example.com"
end
end
Running JoobQ
Starts JoobQ server and listens for jobs
JoobQ.forge
Statistics
JoobQ includes a Statistics class that allow you get stats about queue performance.
Available stats
total enqueued jobs
total, percent completed jobs
total, percent retry jobs
total, percent dead jobs
total busy jobs
total delayed jobs
Contributing
- Fork it (https://github.com/azutoolkit/joobq/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Elias J. Perez - creator and maintainer