solid_queue
solid_queue copied to clipboard
Database-backed Active Job backend
When configuring recurring jobs I've noticed that SolidQueue is hiding configuration mistakes that make it difficult to catch potential errors: 1. Jobs that don't pass `SolidQueue::RecurringTask`'s validation are silently filtered...
## Introduction [Allow specifying recurring tasks just with a "command" ](https://github.com/rails/solid_queue/commit/90f63c8a776a58c276ab34fd5b904e20051f550a) I find this feature very interesting. However, there is one barrier to its use. That is, the parent of...
Hi, In https://github.com/rails/solid_queue/pull/56 it seems built in support for database sharding was added to solid_queue. In my team we were unsuccessful in testing this feature. Maybe we are not setting...
@rosa At the risk of your crafting a Voodoo doll of me, and using it every time I reach out... Without knowing / understanding your design criteria and objectives, I'm...
Required for https://github.com/rails/solid_queue/pull/301 Otherwise the behaviour for deferring jobs until after committing a transaction will change depending on the Rails version.
I setup my `solid_queue.yml` to run a recurring task every 30s that checks for records to sync ```yml default: &default dispatchers: - polling_interval: 1 batch_size: 500 recurring_tasks: sync_records: class: SyncRecordsJob...
Ruby: 3.3.4 Rails: 7.2.1 Solid Queue: 0.7.0, 0.8.2 -------------- I run a Rails App on AWS EC2 instance with 1G of memory. I notice the solid queue process takes up...
Hi, I needed to reprocess a lot of PhotoAlbum instances so I wrote a quick rake task that found ones that needed fixing and set a job running for them....
It would be fantastic if a documentation page existed that explained exactly the steps that a third-party library would have to implement to produce a compatible worker. ## Use Case...
In development, and possible other environments, it's sometimes nice to not see the heartbeat logging. This adds an option to silence the logging for heartbeats. It's very similar to the...