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

Hi I would like to implement an health check for Solid Queue, but it seems difficult to check pidfile of the supervisor in a container context. I am wondering if...

Hi I have Jobs with concurrency limit and 4 queues setup. For that Job I must ensure only 4 jobs can run simultaneous. I want to schedule Jobs in different...

Right now, key generate accepts a callable, whereas the `to` setting for the limit is static. It looks like it would be pretty easy to make that dynamic the same...

My rails application connects to multiple databases with the configs below: database.yml ``` production: primary_shard: ... secondary_shard: ... queue: ... ``` config/initializers/database.rb ```ruby # This is needed due to us...

I hope there is a better way to do this that I am not seeing. According to the read me: > Then run db:prepare in production to ensure the database...

Solid Queue used to use migrations on a single database, which was nice if you wanted to have everything in the same database in development. Now Solid Queue uses schemas,...

This commit removes one of the redundant `run` methods in `SolidQueue::Processes` Here are the warning messages appeared at Rails Nightly CI: https://buildkite.com/rails/rails-nightly/builds/1091#019244bc-9d36-476d-8924-5e2bea4cb728/1173-1176 ``` /usr/local/lib/ruby/gems/3.4.0+0/gems/solid_queue-1.0.0/lib/solid_queue/processes/runnable.rb:52: warning: method redefined; discarding old run...

The generator was adding duplicate lines to production.rb each time it is run ``` config.active_job.queue_adapter = :solid_queue config.solid_queue.connects_to = { database: { writing: :queue } } config.solid_queue.connects_to = { database:...

Hi! Given that I'll be running solid_queue on, for example, an 8 core CPU, what are the factors I should consider when setting the number for `threads` and `processes` in...

Hey there, I'm testing out the queue priorities in solid queue. My `queue.yml` is as follows: ```yml default: &default dispatchers: - polling_interval: 1 batch_size: 500 workers: - queues: [urgent*, semi_urgent*,...