Hot in Oban Questions/Help:

HOTTEST Oban Questions/Help THIS WEEK! Top

HOTTEST Oban Questions/Help THIS MONTH! Top

rindek
Hi everyone, I’m currently working on a project using Oban Pro 1.4.0 with Smart Engine, and I need some guidance on configuring a queue ...
New
brentjanderson
I’m looking at upgrading to Oban Pro 1.7, and I’m wondering if anyone has real-word numbers to share on how much 1.7 has improved applica...
New
anotherpit
A graft inside another graft causes Oban.Pro.Workflow.status to recurse forever. oban_pro 1.7.5 defmodule App.NestedGraftRepro.Test do ...
New
ndan
Oban.Pro.Migration.up(version: "1.7.0", only: :indexes) fails on partitioned oban_jobs table when upgrading Oban Pro from 1.6 to 1.7 def...
New

HOTTEST Oban Questions/Help THIS YEAR! Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
johantell
We’ve come across a somewhat frustrating problem on our development machines where the application gets shut down after Oban fails with t...
New
nono.31
Hello We’re using Oban.Pro 1.14 we have 23 queues we use partitioning we use uniqueness we use local limits we use global limits we use...
New
neilberkman
We’re seeing failures in our CI pipeline starting about an hour ago when the runner tries to add the Oban Pro hex repo: mix hex.repo add...
New
egze
I know that Oban supports sqlite and it works very well. But I couldn’t find any mention of sqlite for ObanWeb and ObanPro. Can somebody...
New
sorenone
Oban Pro v1.7.0-rc.0 has been released!!:fire_extinguisher::heart_on_fire: This release enhances workflows with sub-workflows and contex...
New
mrnovalles
We’re proud and happy users of Oban.Pro , however in the most recent upgrade to v1.5.0, the migrations ended up locking the oban_jobs tab...
New
miguelcoba
Hi there, I would like to know your thoughts about how to use Oban workers in a Phoenix app with Scopes. When using scopes the context f...
New
hubertlepicki
@sorentwo or anyone really I may need some help with Oban. My set up: oban 2.19.4 oban_pro 1.6.2 oban_web 2.11.1 Since couple of day...
New
martosaur
Here’s an example workflow that has a container sub-workflow that fans out multiple sub-workflows each of which contains a cascade functi...
New
tjchambers
Yesterday I was able to deploy my app successfully. Today my deploys are breaking with: | 4.343 Failed to fetch record for oban/oban_p...
New
Tesguru
Hello everyone, Im getting this error when configuring Oban on my phoenix App, Pls I need your expertise on this Im using Oban 2.19
New
nathanl
I’ve got some jobs that are “stuck”. Eg, one is scheduled 20 hours ago and is in available on attempt 0 of 15. It’s part of a workflow an...
New
axelson
Has anyone written a credo rule that will forbid calling schedule_in with a raw number? i.e. instead of: new(arguments, schedule_in: 60...
New
ryanwinchester
I have an Oban Workflow that I want to limit so that only 1 Workflow will run for a user at a time, but not block for other users. From ...
New

HOTTEST Oban Questions/Help THE LAST THREE YEARS! Top

artem
Hi there I am still learning my elixir ways, doing my first real elixir project. It is going to process excels or CSV files of user feed...
New
managua1902
I use Oban to make external API requests every N minutes. It’s turned out that the frequnecy I use it with is too dense such that it’ll c...
New
jswny
Clip from the Elixir Mentor Podcast: https://youtu.be/mKp30PNM_Q4?si=WHjZEzq3DLNUp-VD Very exciting news! Oban is a fantastic piece of s...
New
AHBruns
We are using Oban rate limiting to ensure we don’t overload an external service. The service has a rate limit of no more than 100 request...
New
linusdm
Hi! :wave: This weekend I experienced jobs accumulating in a state available across all queues. We run a two-node setup. One of them was...
New
scottmessinger
@sorentwo I’m running into an issue where I start an iex session (iex -S mix) and then my terminal keeps showing log messages from Oban: ...
New
benonymus
Hey, I have been using quantum for cron kind of jobs in a project, and when 2 instances of this project were running the jobs were runni...
New
visezoly
situation: I have a list of posts, each post is associated with many comments, I want to process each post in an Oban worker where for ...
New
tedi
Hello, I am using Oban [Pro] for all of my queues. I have been hitting a wall on one of my queue functionalities. I have the following ...
New
adr
Hello all. Adding oban to a project and wondering why the install guide has the following: def up do Oban.Migration.up(version: 11...
New
Cam
I have recently upgraded Oban from 2.0 → 2.16 - After the upgrade I’m getting an interesting interaction when running my scheduled job. A...
New
silviurosu
I have a dilema that I would like to hear your input on: We have a server that serves a decently high rate of api calls and needs to sta...
New
budgie
I have a daily quota from an API that I’m calling in Oban jobs. When I get an error response because of the quota exceeded, I want to pos...
New
lessless
Hello, I want to ignore Oban-related traces in Ecto OpenTelemetry which comes in two flavours: queries against oban_* tables interacti...
New
dimitarvp
We have jobs with the following requirements: Jobs need to be retried exactly once every 24h or slightly less, with no exceptions – I a...
New

HOTTEST Oban Questions/Help THIS Over 3 Years! Top

setop
Hi, I have an Elixir application configured to run background scheduled jobs. One of them runs every couple of minutes and fails every ...
New
tirana
Let’s say: I have 1 millions of records in a DB and I want to process them daily via something like Oban. there’s an Oban job which is ...
New
tovarchristian21
Hello guys, I’ve been checking out Oban for implementing some processing queues for my application. Something I’ve been wondering is that...
New
sheharyarn
I have an Elixir app that uses Oban to schedule jobs at a time specified by users. For example, users can specify the date and time to se...
New
carterbryden
Hi, wondering if anyone has experience creating a lot of queues dynamically with oban, and how that went for you. I’m writing an app tha...
New
pavancse17
Hey Devs, I have been using Oban — Oban v2.5.0 (hexdocs.pm) in one of my phoenix application. My requirement is like when job fails afte...
New
Papillon6814
Hello. I cannot run mix test due to this error. 18:22:11.758 [error] GenServer {Oban.Registry, {Oban, {:plugin, Oban.Plugins.Stager}}} ...
New
andreyuhai
I am trying to insert another Oban job after one finishes by listening to [:oban, :job, :stop]. I’d like to assert that the next job was...
New
osmirbresciani
I’m developing process automation using oban, but lately I’m facing a problem with updating the code in worker modules. Whenever I updat...
New
MMore
I have an Elixir apps which does some harder jobs in the background. I am using Oban to run them asynchrously. For better availability I’...
New
tompesman
Hi, I’m tracing down an issue with Oban. I’ve a staging environment which works correctly and a production environment which has issues....
New
kevinschweikert
Hi, we are trying to build a system, where a user can add events to a calendar. When the event is due, some specific business logic shou...
New
onkara
I am trying to wrap my head around the difference between Oban & RabbitMQ i.e. when does it make sense to use Oban vs RabbitMQ? I kn...
New
OrontaMedu
I want to let the user run customly, statically predefined set of tasks from a web page, as well as view their states, results, possibly ...
New
jordelver
This is probably my misunderstanding rather than an Ecto or Oban issue, but I’ve only seen this error since I deployed a toy app using Ob...
New

Oban

Classification: Job Processing Library
Threads: 409
Posts: 2840
Forum Tags: #oban

"Robust job processing in Elixir, backed by modern PostgreSQL, MySQL, and SQLite3. Reliable, observable, and loaded with enterprise grade features."

  • Follow
  • Join
  • Shape
the conversation
Oban on GitHub
Stars: 3,938 Watchers: 38 Open Issues: 5 Last push: about 11 hours ago

Core Team Members

Confs & Meetups

15 days remaining
DC Elixir
Build Night: Hands-on with Zig and Zigler - Washington DC/USA July 15, 2026
59 days remaining
Erlang Workshop 2026
Indianapolis, USA August 28, 2026
72 days remaining
ElixirConf US
Chicago September 10, 2026

Saved Forums

    None saved yet

Top Sub Portals

    None added yet

Saved Forums

    None saved yet

We're in Beta

About us Mission Statement