freemer
We’ve been using ObanWeb and ObanPro successfully for years, but as of late, we are consistently encountering all zeros in the dashboard job counts, despite many jobs obviously executing. We see a count for total jobs executing in the Nodes section, but everything else is 0. After a deploy, the counts work briefly, but will quickly revert to all 0s. We haven’t made any changes to our Oban config lately. We’re not seeing any errors making it to our error reporting service - it is maybe possible that something is being logged but not reported. We’re currently on oban_web 2.10.2. Thanks for any help! ![]()
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
sorentwo
Counts and queue state information all comes from distributed metrics. There are a couple of components that must be operational for those metrics to flow, and make it to the dashboard. As the dashboard was working, it seems like either a leadership or pubsub issue:
Oban.Peer.get_leader(), will perform database counts.Which notifier are you using? If you didn’t configure anything, it’s the default Postgres notifier, which may have connectivity problems. The Web installation guide recommends the PG notifier for performance and accuracy.
freemer
Thanks for the reply. We’re using the default notifier, so it seems like an easy first step will be to try out the recommended Oban notifier and see if that solves the issue. Will keep you posted!
wladimirgramacho
Did you get this issue resolved? I see the same issue on my app
freemer
I did not unfortunately. I tried swapping in the Oban notifier, and that didn’t do the trick. The
Oban.Peer.get_leaderfunc that sorentwo references in his reply isn’t on the version of oban we’re currently using, so my next plan is to upgrade oban to the latest and check on the leader. I’ll report out once I find the time to do the upgrade.freemer
Upgrading to
oban_web2.11.1fixed the issue!