Elixir Queue

Open-source Elixir projects categorized as Queue

Top 23 Elixir Queue Projects

  • oban

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

  • Project mention: How to Use Flume in your Elixir Application | dev.to | 2024-04-16

    Oban, backed by PostgreSQL or SQLite, also provides a queue-based job processing system. Exq, on the other hand, is backed by Redis. It provides features similar to Flume, but without built-in rate limiting and batch processing capabilities.

  • broadway

    Concurrent and multi-stage data ingestion and data processing with Elixir

  • Project mention: Switching to Elixir | news.ycombinator.com | 2023-11-09

    You can actually have "background jobs" in very different ways in Elixir.

    > I want background work to live on different compute capacity than http requests, both because they have very different resources usage

    In Elixir, because of the way the BEAM works (the unit of parallelism is much cheaper and consume a low amount of memory), "incoming http requests" and related "workers" are not as expensive (a lot less actually) compared to other stacks (for instance Ruby and Python), where it is quite critical to release "http workers" and not hold the connection (which is what lead to the creation of background job tools like Resque, DelayedJob, Sidekiq, Celery...).

    This means that you can actually hold incoming HTTP connections a lot longer without troubles.

    A consequence of this is that implementing "reverse proxies", or anything calling third party servers _right in the middle_ of your own HTTP call, is usually perfectly acceptable (something I've done more than a couple of times, the latest one powering the reverse proxy behind https://transport.data.gouv.fr - code available at https://github.com/etalab/transport-site/tree/master/apps/un...).

    As a consequence, what would be a bad pattern in Python or Ruby (holding the incoming HTTP connection) is not a problem with Elixir.

    > because I want to have state or queues in front of background work so there's a well-defined process for retry, error handling, and back-pressure.

    Unless you deal with immediate stuff like reverse proxying or cheap "one off async tasks" (like recording a metric), there also are solutions to have more "stateful" background works in Elixir, too.

    A popular background job queue is https://github.com/sorentwo/oban (roughly similar to Sidekiq at al), which uses Postgres.

    It handles retries, errors etc.

    But it's not the only solution, as you have other tools dedicated to processing, such as Broadway (https://github.com/dashbitco/broadway), which handles back-pressure, fault-tolerance, batching etc natively.

    You also have more simple options, such as flow (https://github.com/dashbitco/flow), gen_stage (https://github.com/elixir-lang/gen_stage), Task.async_stream (https://hexdocs.pm/elixir/1.12/Task.html#async_stream/5) etc.

    It allows to use the "right tool for the job" quite easily.

    It is also interesting to note there is no need to "go evented" if you need to fetch data from multiple HTTP servers: it can happen in the exact same process (even: in a background task attached to your HTTP server), as done here https://transport.data.gouv.fr/explore (if you zoom you will see vehicle moving in realtime, and ~80 data sources are being polled every 10 seconds & broadcasted to the visitors via pubsub & websockets).

  • 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.

    InfluxDB logo
  • exq

    Job processing library for Elixir - compatible with Resque / Sidekiq

  • Project mention: How to Use Flume in your Elixir Application | dev.to | 2024-04-16

    Oban, backed by PostgreSQL or SQLite, also provides a queue-based job processing system. Exq, on the other hand, is backed by Redis. It provides features similar to Flume, but without built-in rate limiting and batch processing capabilities.

  • verk

    A job processing system that just verks! 🧛‍

  • honeydew

    Job Queue for Elixir. Clustered or Local. Straight BEAM. Optional Ecto. 💪🍈

  • amqp

    Idiomatic Elixir client for RabbitMQ (by pma)

  • que

    Simple Job Processing in Elixir with Mnesia :zap: (by sheharyarn)

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
  • kafka_ex

    Kafka client library for Elixir

  • Rihanna

    Rihanna is a high performance postgres-backed job queue for Elixir

  • ecto_job

    Transactional job queue with Ecto, PostgreSQL and GenStage

  • opq

    Elixir queue! A simple, in-memory queue with worker pooling and rate limiting in Elixir.

  • task_bunny

    TaskBunny is a background processing application written in Elixir and uses RabbitMQ as a messaging backend

  • kaffe

    An opinionated Elixir wrapper around brod, the Erlang Kafka client, that supports encrypted connections to Heroku Kafka out of the box.

  • conduit

    A message queue framework, with support for middleware and multiple adapters. (by conduitframework)

  • Ravenx

    Notification dispatch library for Elixir applications

  • elixir_nsq

    An NSQ client for Elixir and Erlang, written in Elixir.

  • Cafex

    Cafex is a pure Elixir implementation of Kafka client

  • exrabbit

    Simple rabbitmq bindings for elixir

  • work_queue

    Simple implementation of the hungry-consumer model in Elixir

  • flume

    A blazing fast job processing system backed by GenStage & Redis. (by scripbox)

  • faktory_worker

    Elixir Faktory worker https://hexdocs.pm/faktory_worker

  • qex

    Queue data structure for Elixir-lang

  • kafka_consumer

    Consumer for Kafka using brod and elixir (production ready)

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Elixir Queue related posts

Index

What are some of the best open-source Queue projects in Elixir? This list will help you:

Project Stars
1 oban 3,030
2 broadway 2,300
3 exq 1,473
4 verk 719
5 honeydew 716
6 amqp 662
7 que 661
8 kafka_ex 590
9 Rihanna 435
10 ecto_job 272
11 opq 255
12 task_bunny 201
13 kaffe 149
14 conduit 129
15 Ravenx 109
16 elixir_nsq 89
17 Cafex 70
18 exrabbit 48
19 work_queue 41
20 flume 40
21 faktory_worker 36
22 qex 30
23 kafka_consumer 26

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com