- Published
- Author
- GiritharanSystem Analyst
Managing Jobs in SolidQueue with Rails Console
•
•
•
•
•
•
•
#activejob #solidqueue #queriesforsolidqueue #CU6U0R822
•
SolidQueue::RecurringExecution.all : You can find and manage recurring jobs with this query.•
SolidQueue::ReadyExecution.all: Use this query to identify jobs that are ready to run but haven’t started yet.•
SolidQueue::BlockedExecution.all: Find jobs that are blocked and waiting for conditions to be met before execution.•
SolidQueue::ClaimedExecution.all: Check jobs that have been claimed by workers but are still in progress.•
SolidQueue::FailedExecution.all: Use this to track jobs that failed during execution.•
SolidQueue::ScheduledExecution.all: Find jobs that are scheduled for future execution.•
SolidQueue::Job.where(finished_at: nil): Query to get jobs that are still running or haven’t finished yet.#activejob #solidqueue #queriesforsolidqueue #CU6U0R822