pg-boss VS neoq

Compare pg-boss vs neoq and see what are their differences.

pg-boss

Queueing jobs in Node.js using PostgreSQL like a boss (by timgit)

neoq

Queue-agnostic background job library for Go, with a pleasant API and powerful features. (by acaloiaro)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
pg-boss neoq
12 5
1,638 243
- -
4.4 8.3
28 days ago 11 days ago
JavaScript Go
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

pg-boss

Posts with mentions or reviews of pg-boss. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-24.

neoq

Posts with mentions or reviews of neoq. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-08.
  • Show HN: Hatchet – Open-source distributed task queue
    22 projects | news.ycombinator.com | 8 Mar 2024
  • Choose Postgres Queue Technology
    17 projects | news.ycombinator.com | 24 Sep 2023
    I just want to commend OP - if they’re here - for choosing an int64 for job IDs, and MD5 for hashing the payload in Neoq, the job library linked [0] from the article.

    Especially given the emphasis on YAGNI, you don’t need a UUID primary key, and all of its problems they bring for B+trees (that thing RDBMS is built on), nor do you need the collision resistance of SHA256 - the odds of you creating a dupe job hash with MD5 are vanishingly small.

    As to the actual topic, it’s fine IFF you carefully monitor for accumulating dead tuples, and adjust auto-vacuum for that table as necessary. While not something you’d run into at the start, at a modest scale you may start to see issues. May. You may also opt to switch to Redis or something else before that point anyway.

    [0]: https://github.com/acaloiaro/neoq

  • Ask HN: Tell us about your project that's not done yet but you want feedback on
    68 projects | news.ycombinator.com | 16 Aug 2023
    Neoq (https://github.com/acaloiaro/neoq) is a background job processor for Go.

    Yes, another one. It began from my desire to have a robust Postgres-backed job processor. What I quickly realized was that the interface in front of the queue was what was really important. This allowed me to add both in-memory and Redis (provided by asynq) backends behind the same interface. Which allows dependent projects to switch between different backends in different settings/durable requirements. E.g. in-memory for testing/development, postgres when you're not running Google-scale jobs, and Redis for all the obvious use cases for a Redis-backed queue.

    This allows me to swap out job queue backends without changing a line of job processor code.

    I'm familiar with the theory that one shouldn't implement queues on Postgres, and to a large extent, I disagree with those theories. I'm confident you can point out a scenario in which one shouldn't, and I contend that those scenarios are the exception rather than the rule.

  • Examples of using task scheduler with Go?
    8 projects | /r/golang | 3 Jun 2023
    I created a background processor called Neoq (https://github.com/acaloiaro/neoq) that is likely to interest you.
  • SQL Maxis: Why We Ditched RabbitMQ and Replaced It with a Postgres Queue
    16 projects | news.ycombinator.com | 11 Apr 2023
    This is exactly the thesis behind neoq: https://github.com/acaloiaro/neoq

What are some alternatives?

When comparing pg-boss and neoq you can also consider the following projects:

worker - High performance Node.js/PostgreSQL job queue (also suitable for getting jobs generated by PostgreSQL triggers/functions out into a different work queue)

starqueue

celery - Distributed Task Queue (development branch)

oban - 💎 Robust job processing in Elixir, backed by modern PostgreSQL and SQLite3

django-postgres-queue - A task queue for django

tembo - Monorepo for Tembo Operator, Tembo Stacks, and Tembo CLI

RabbitMQ - Open source RabbitMQ: core server and tier 1 (built-in) plugins

Asynq - Simple, reliable, and efficient distributed task queue in Go

Redis - Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bitmaps.

pgtt - PostgreSQL extension to create, manage and use Oracle-style Global Temporary Tables and the others RDBMS

kue - Kue is a priority job queue backed by redis, built for node.js.

pgjobq - Atomic low latency job queues running on Postgres