A simple, lightweight, Redis-backed job queue library
A simple, lightweight, Redis-backed job queue library designed for TypeScript
applications. LightQ provides essential queueing features with a focus on
reliability and ease of use, leveraging atomic Redis operations via Lua scripts.
active
, completed
, failed
,retrying
, etc. (including scheduler-specific events).# Using npm
npm install @jlucaso/lightq
# Using yarn
yarn add @jlucaso/lightq
# Using Bun
bun add @jlucaso/lightq
Prerequisite: Requires a running Redis server (version 4.0 or later
recommended due to Lua script usage). ioredis
is used as the Redis client.
Check the example/index.ts
file for a comprehensive demonstration, including:
Queue<TData, TResult, TName>
constructor(name: string, opts: QueueOptions)
: Creates a new queueadd(name: TName, data: TData, opts?: JobOptions): Promise<Job<TData, TResult, TName>>
:addBulk(jobs: { name: TName; data: TData; opts?: JobOptions }[]): Promise<Job<TData, TResult, TName>[]>
:upsertJobScheduler(schedulerId: string, repeat: SchedulerRepeatOptions, template: JobTemplate): Promise<void>
:removeJobScheduler(schedulerId: string): Promise<boolean>
: Removes agetJob(jobId: string): Promise<Job<TData, TResult, TName> | null>
:getJobCounts(): Promise<{ wait: number; active: number; ... }>
: Gets theclose(): Promise<void>
: Closes the Redis connection used by the queueerror
, ready
, waiting
, closing
, closed
,scheduler_error
, scheduler_job_added
.Worker<TData, TResult, TName>
constructor(name: string, processor: Processor<TData, TResult, TName>, opts: WorkerOptions)
:processor
function takes a Job
object and should return a Promise
close(force?: boolean): Promise<void>
: Closes the worker. By default, itforce = true
attempts a faster shutdown.active
: Job started processing. (job: Job) => void
completed
: Job finished successfully.(job: Job, result: TResult) => void
failed
: Job failed (possibly after retries).(job: Job | undefined, error: Error) => void
error
: An error occurred within the worker itself (e.g., Redis connection(error: Error, job?: Job) => void
retrying
: Job failed but will be retried.(job: Job, error: Error) => void
movedDelayed
: Delayed jobs were moved to the wait list.(count: number) => void
ready
: Worker connected to Redis. () => void
closing
: Worker is starting the closing process. () => void
closed
: Worker has finished closing. () => void
Job<TData, TResult, TName>
id
: Unique job ID.name
: Job name provided during add
.data
: The payload provided during add
.opts
: Job-specific options.attemptsMade
: How many times this job has been attempted.progress
: (Note: updateProgress
is currently not fully implemented).returnValue
: The result returned by the processor upon completion.failedReason
: The error message if the job failed permanently.stacktrace
: Stack trace if the job failed.JobScheduler
JobScheduler
class managesQueue
βs upsertJobScheduler
removeJobScheduler
methods. It runs a background process to check forerror
, job_added
, upsert
, remove
,start
, stop
, closing
, closed
.connection
: IORedis connection options or an existing IORedis
instance.prefix
: Redis key prefix (default: lightq
).defaultJobOptions
: Default JobOptions
applied to all jobs added to thisprefix
is used as the base for schedulerschedulerPrefix
is provided in JobSchedulerOptions
.QueueOptions
.concurrency
: Max number of jobs to process concurrently (default: 1
).lockDuration
: Time (ms) a job is locked during processing (default:30000
).lockRenewTime
: Interval (ms) before lock expiration to attempt renewallockDuration / 2
).removeOnComplete
: true
to delete job data on success, or a number
tofalse
.removeOnFail
: true
to delete job data on final failure, or a number
tofalse
.jobId
: Assign a custom job ID (cannot start with scheduler:
).delay
: Delay (ms) before the job should be processed.attempts
: Max number of times to attempt the job (default: 1
).backoff
: Backoff strategy for retries: number
(fixed delay ms) or{ type: 'fixed' | 'exponential', delay: number }
.removeOnComplete
: Overrides worker/queue default.removeOnFail
: Overrides worker/queue default.JobSchedulerOptions
(extends QueueOptions
): Options for the schedulercheckInterval
: How often (ms) the scheduler checks for due jobs (default:5000
).schedulerPrefix
: Specific Redis key prefix for scheduler data (defaults toprefix
from QueueOptions
).SchedulerRepeatOptions
: Defines when scheduled jobs run.
{ pattern: string, tz?: string }
: A cron pattern string and optionalpattern: '0 * * * *'
for hourly).{ every: number }
: A repeat interval in milliseconds (e.g., every: 60000
JobTemplate
: Defines the job created by the scheduler.
name
: The name of the job to be added to the queue.data?
: The data payload for the job.opts?
: JobOptions
for the created job (cannot include jobId
ordelay
).Contributions are welcome! Please feel free to open an issue or submit a pull
request.
Licensed under the MIT License.