solid_queue
solid_queue copied to clipboard
Database-backed Active Job backend
Would you be open to supporting rake tasks in recurring jobs? Something like this ```yaml production: generate_sitemap: rake: sitemap:refresh flags: s: true verbose: true schedule: every day at 3am custom_rake_task:...
Hi, this PR adds a default key to `limits_concurrency` so users don't need to come up with a key name if they only want to limit by job name (regardless...
Hi! I am working with SolidQueue in a project and recently I have encountered a problem, the mission_control-jobs gem shows as some jobs are running, but when checking the system...
Hello everyone, I ran into an incident where we had an extremely large backlog of jobs in our queue as things exponentially fell behind and simply could not catch up....
Hi, Following is my Job file ``` # frozen_string_literal: true class Braze::GasSaver::BrazeUpdateGasSaverJob < ApplicationJob queue_as :default limits_concurrency to: 1, duration: 4.seconds, key: "braze_gas_saver_update" retry_on StandardError, wait: 5.seconds, attempts: 3 def...
Periodically I get this error: Here is the raw data: ```json { "id": 268, "queue_name": "bulk_processing", "class_name": "RunCaseJob", "arguments": { "job_class": "RunCaseJob", "job_id": "9fcfc846-a982-4ac8-b2e1-11878b2d97af", "provider_job_id": null, "queue_name": "bulk_processing", "priority": null,...
👋 I was wondering if there is any value in continuing to enqueue recurring jobs if a queue is paused. One of our use cases for recurrent jobs is that...
I have a simple job in rails that's run every 15 minutes.I am using the default Solid queue setup for jobs. class ContinuousSearchJob < ApplicationJob def perform keyword = Keyword.first...
Hey @rosa. Thanks for this gem all the work you've done with SolidQueue. We're transitioning our monolith from Resque to SolidQueue and it's been a great experience! Just wondering if...
You'll need to choose another port for your dev setup as it conflicts with a locally installed MySQL if the X Protocol port is running. 33061 would be find but...