solid_queue icon indicating copy to clipboard operation
solid_queue copied to clipboard

Database-backed Active Job backend

Results 135 solid_queue issues
Sort by recently updated
recently updated
newest added

I am trying to setup my recurring jobs and I tried use anchors to do something like this: ```yaml production: the_recurring_job: &the_recurring_job queue: low class: TheRecurringJob schedule: "0 */2 *...

We're running SolidQueue as a Puma plugin on a Rails 8 app, as our job processing load is currently quite small. We recently had an incident where the server running...

This is a first pass at a fix for #512: allowing Solid Queue to recover if the database goes offline (or if it fails for any other reason). In the...

Closes https://github.com/rails/solid_queue/issues/176 Add ability to discard duplicate jobs instead of becoming blocked. When configuring `concurrency_limits` with `at_limit: discard` jobs scheduled above the concurrency limit are discarded and not executed. ##...

Hi, I scheduled a few recurring job to run every hours. This job will trigger around 800 active jobs. here is the pseudo code: ``` records.each do |record| ExtractDataJob.perform_later end...

Fixes https://github.com/rails/solid_queue/issues/186 Add resque-scheduler style dynamic schedules feature, allowing you to add or remove recurring tasks at runtime without touching your static config file. **What’s new:** - Dynamic scope (static:...

👋 Hello maintainers. Wanted to drop a line to advocate for a default dashboard UI to include in solid queue similar to sidekiq and goodjob. I was able to find...

Last week, our provisioned Postgres instance was suddenly dropped for our production app. Heroku reported it as a hardware failure on their end, and for ~10 minutes our database associated...

Hi @rosa, Thanks for the awesome work ! We are currently using the [whenever gem](https://github.com/javan/whenever) to manage recurring rake tasks and are considering using SolidQueue's recurring tasks to replace this...

Hey there, after running Solid Queue for a few months, we're seeing occasional spikes in our CPU usage. From what I understand in the README, there are some limitations due...