Implementing Worker Microservice in NodeJs

What is worker...

  • scheduled system - notification, analytics, etc.
  • cron tasks
  • webhooks

The High-Level Design

Worker

Service A

Service C

Servic​e B

DB

UI

Options?

KUE

retries

auto recovery

multi-threaded

  1. The Queue constructor
  2. Producer
    - job is added to queue
  3. Consumer
    - process to be carried out

Queue elements

Queue elements (Cont..)

UI/Dashboard

Example

Worker Microservice

By fadziljusri

Worker Microservice

  • 90