Questions tagged [sidekiq-superworker]
3 questions
2
votes
1 answer
How to process queue sequentially in Redis and SideKiq in Rails?
I am using Rails 4 in my app and this is how i create a new job:
class FetchJob < ActiveJob::Base
queue_as :fetchjob
def perform num
puts num
sleep 30
end
end
This code prints out the value of num and then sleeps for 30 seconds. I am…

Thangadurai Nainamalai
- 179
- 1
- 4
- 19
2
votes
0 answers
Sidekiq - processing jobs sequentially
Is it possible to process jobs sequentially, based on arguments?
Example jobs:
Jobs: [User A, Operation A], [User B, Operation B], [User A, Operation C], [User B, Operation D], .. stream of jobs
Process all jobs of each user sequentially, but…

Akshay Rawat
- 4,714
- 5
- 40
- 65
0
votes
1 answer
configure sidekiq queues to display in descending order
We have list of queues in our sidekiq dashboard , Is there any way to configure the queue to be displayed in descending order if the queue size get increased .
Say for example , I have 100 sidekiq queues listed in the dashboard , if one of the…

Karthikraj
- 7
- 4