Giter VIP home page Giter VIP logo

nodejs-background-worker's Introduction

NodeJS Background Worker

Introduction

Demonstration

This repository is a demonstration of actioning background processing / jobs using Bull, a Redis-based queue for Node. In this example we create a job queue in Redis, write jobs into said queue, and attach a worker to process said jobs. There are three containers;

  • A redis container that persists its data to disk (in redis-data/) to ensure jobs live between container teardowns and restarts.
  • A service container using Express that hosts a dashboard and an endpoint to create and place jobs into a queue.
  • A worker container that attaches a processor function to the queue.

Instructions

These instructions assumes you already have docker and docker-compose installed. The steps are as follows:

  1. Run the service which will also bring up the redis container and create the queue (should it not already exist yet).
docker-compose up service
  1. Hit the jobs endpoint a multitude of times to queue up dummy jobs, ready for processing.
curl -X POST http://localhost:8080/job
  1. Open bull-board dashboard and see the "waiting" tab is populated with the jobs you spun up. They will remain here until we start the worker and get processed.

  2. Start the worker in another tab / terminal.

docker-compose up worker
  1. Observe that jobs are picked up from "waiting", moved to "active", progressed over time then moved to "completed". You will also see appropriate logging in the workers output. Jobs have been given an artificial 50% chance to fail, so you can potentially see them be attempted multiple times, and moved to "delayed" as they are exponentially backed off and attempted up to a maximum number of times, before being moved to "failed".

Further Information

nodejs-background-worker's People

Contributors

anthonyhastings avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.