python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Testing enque of nested worker from another sidekiq worker
We have two workers as demonstrated below :
class WorkerOne
include Sidekiq::Worker
def perform(arg_1, arg_2)
# some calculation figure out arg_3
WorkerTwo.perform_async(arg_3, arg_2)
e...
Anubhav Jain
Votes: 0
Answers: 1
ActiveStorage Analyzer job latency too high
I use ActiveJob, backed by Sidekiq. In the sidekiq web UI, I could see a large number of jobs enqueued to the active_storage_analysis queue, but the latency is very high and I don't see these jobs bei...
user3579726
Votes: 0
Answers: 1
Sidekiq jobs are getting Enqueued but it's not getting processed. All Jobs are stuck in Enqueued
I am trying to send email using sidekiq but it's not working. Here is how i setup sidekiq with ActiveJob
Gemfile
gem 'sidekiq'
then i run bundle install.
Application.rb
config.active_job.queue_adapte...
r3b00t
Votes: 0
Answers: 2
Sidekiq unique jobs with lock_expiration not working as intended
I'm having an issue with lock_expiration and sidekiq unique jobs.
gem 'sidekiq', '4.2.10'
gem 'sidekiq-cron', '1.2.0'
gem 'sidekiq-unique-jobs', '6.0.25'
With the sidekiq options of:
sidekiq_options ...
DickieBoy
Votes: 0
Answers: 1