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

This tries to address a deadlock we've seen about once every couple of days, where two jobs that compete for the semaphore are enqueued at the same time. Two transactions...

env: ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [x86_64-linux] Rails 7.1.2 Mysql 5.7 [ActiveJob] SolidQueue::Job Create (1.7ms) INSERT INTO `solid_queue_jobs` (`queue_name`, `class_name`, `arguments`, `priority`, `active_job_id`, `scheduled_at`, `finished_at`, `concurrency_key`, `created_at`, `updated_at`) VALUES ('default',...

Great release! Looking forward to trying this in tandem with Mission Control in 2024! I had a question about `concurrency` and how it might play with `uniqueness` and `rate-limits` for...

First off, congrats on the initial release! I'm really excited to start giving this a try - it includes a very robust feature set out of the gate which is...

Would it be possible to make this gem compatible with MS SQL server using the READPAST hint and UPDLOCK? https://www.reddit.com/r/SQL/comments/17thq2b/for_update_skip_locked_equivalent_for_ms_sql/ https://learn.microsoft.com/en-us/sql/t-sql/queries/hints-transact-sql-table?view=sql-server-ver16

For those still stuck with active admin :) The below is a quick means to get the jobs appear inside your backend admin. ``` # typed: false # frozen_string_literal: true...

i used rails 7.1 and added solid_queue to my project. I run **rails solid_queue:install:migrations** I created inside de config folder solid_queue.yml then **bundle exec rake solid_queue:start** and i got this...

Because I'm locked to Heroku, I'm obliged to watch the memory utilization for the jobs "dyno" as I have a particular job that triggers R14 errors (soft OOM). Not only...

I have several cron jobs. Because I'm currently locked to Heroku, there are times when I'm not in control of when my application is running or gets restarted. To that...

Firstly, thank you for all the work on solid queue so far! Apologies if this is lack of understanding and user-error on my part, but when the docs mention supporting...