How to use Mission Control Jobs in Rails Discussion
Super excited to see Mission Control out in the wild. It's a dashboard for ActiveJob that works across queue adapters. What's nice is that in the long term you can swap out backends but still have the same UI for monitoring and retrying jobs.
so do you prefer Puma over Phusion Passenger?
Yeah, Puma is the Rails default.
Puma is the preferred server (with NGINX?) for Rail in production. All of the guides show installing Passenger/NGINX
Do you (or anyone else) know if the bug you say you found in "retry" has been fixed in a release yet; or the easiest way we could check to see if it has?
Yes, it's fixed. https://github.com/basecamp/mission_control-jobs/pull/47
That’s awesome! Mission Control sounds like a game-changer for managing ActiveJob across different queue adapters. The fact that you can swap out backends without losing the consistency of the UI is huge for long-term maintainability and flexibility. It must make it so much easier to monitor jobs and retry them without having to worry about re-learning a new interface for each backend. Definitely looking forward to checking it out myself! How’s the setup process—pretty straightforward?