تخطَّ إلى المحتوى

jobs

هذا المحتوى غير متوفر بلغتك بعد.

Background job queue with BullMQ-style dispatch and a built-in dashboard. Free: MIT licensed.

Terminal window
nself plugin install jobs

Provides a Redis-backed job queue for background processing. Supports priority queues, delayed jobs, retries with exponential backoff, and job deduplication. Includes a web dashboard for monitoring queue depth and job status.

Requires Redis (REDIS_ENABLED=true in your .env).

Env VarDefaultDescription
JOBS_PORT3105Jobs service port
JOBS_CONCURRENCY5Workers per queue
JOBS_MAX_RETRIES3Max retry attempts
JOBS_RETRY_DELAY60Seconds between retries
PortPurpose
3105Jobs service REST API and dashboard

2 tables added to your Postgres database:

  • np_jobs_definitions: registered job types
  • np_jobs_history: completed/failed job records
RouteTarget
/jobs-dashboard/Job queue dashboard UI
GET /health: Health check
POST /jobs: Enqueue a job
GET /jobs/{id}: Get job status
DELETE /jobs/{id}: Cancel a job
GET /queues: List queues and depths