GithubHelp home page GithubHelp logo

linecode / owl-2 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from quirrel-dev/owl

0.0 1.0 0.0 875 KB

A high-performance, Redis-backed job queueing library originally built for Quirrel. Has an in-memory mode for development use cases.

License: MIT License

JavaScript 0.27% Lua 6.91% TypeScript 92.82%

owl-2's Introduction

Owl ๐Ÿฆ‰

Owl is a high-performance, redis-backed job queueing library originally built for Quirrel ๐Ÿฟ.

Getting Started

npm install @quirrel/owl
import Owl from "@quirrel/owl"
import Redis from "ioredis"

const owl = new Owl(() => new Redis())

const worker = owl.createWorker(async (job, ackDescriptor) => {
  console.log(`${job.queue}: Received job #${job.id} with payload ${job.payload}.`);
  // ...

  await worker.acknowledger.acknowledge(ackDescriptor);
})

await worker.start();

const producer = owl.createProducer()

await producer.enqueue({
  queue: "email",
  id: "some-random-id",
  payload: "...",
  runAt: new Date(Date.now() + 1000),
  ...
})

While I originally created Owl for use in Quirrel, I decided to publish it as its own project so people can use it for their own purposes. If you want to use Owl in your own project and need some more documentation: Please go ahead and create an issue for it :D

What's special about Owl?

Owl ...

  • ... doesn't require you to specify queues upfront
  • ... is optimised for short-running jobs
  • ... allows for totally custom schedules
  • ... is written in TypeScript
  • ... has a low-overhead activity stream (based on Redis Pub/Sub)
  • ... allows fast queries about currently scheduled jobs
  • ... has an persisted mode, but also an in-memory one for quick development

Owl's Architecture

Owl Architecture

A job consists of a Queue, an ID and a payload.

They are scheduled for later execution by the producer.

Once the time has come for a job to be executed, a worker will request it. This will move it into a list currently processing jobs. Aftere execution is finished, the worker acknowledges it and (in case of repeated jobs) re-enqueues it.

Trivia

Why Owl?

It's well-known that Squirrels ๐Ÿฟ and Owls ๐Ÿฆ‰ are good friends. Owls are reliable, mostly down-to-earth and know how to deal with time. Thus, their skillset makes them excellent queue keepers.

Compatibility with Redis Cluster

At the moment, Owl does not aim to be compatible with Redis Cluster. This may change in the future, though.

Contributors โœจ

Thanks goes to these wonderful people (emoji key):


Simon Knott

๐Ÿ’ป ๐Ÿค”

Antony

๐Ÿ’ป ๐Ÿ›

This project follows the all-contributors specification. Contributions of any kind welcome!

owl-2's People

Contributors

dependabot-preview[bot] avatar dependabot[bot] avatar depfu[bot] avatar renovate-bot avatar skn0tt avatar

Watchers

 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.