13

I am using sidekiq in rails4.
How can I find failed jobs list and reprocesses them to perform in sidekiq?

Nakilon
  • 34,866
  • 14
  • 107
  • 142
Debadatt
  • 5,935
  • 4
  • 27
  • 40

2 Answers2

11

Try sidekiq-failures , I believe that is what you want.

https://github.com/mhfs/sidekiq-failures

rainstop3
  • 1,408
  • 11
  • 13
9

See Sidekiq::RetrySet in sidekiq/api

https://github.com/mperham/sidekiq/wiki/API#retries

Mike Perham
  • 21,300
  • 6
  • 59
  • 61
  • I am getting an error message for ArgumentError: An SMTP To address is required to send a message. Set the message smtp_envelope_to, to, cc, or bcc address. always . Most of the jobs are running but somtimes the jobs get failed due to SMTP. Can you please identify the issue? – Debadatt May 14 '14 at 07:07
  • 1
    Irrespective of whether a job has been retried or not, we would like to know the failed jobs argument. I mean if on retry the job has succeeded the retry job will get cleared. However it will still remain in the failed job counter. So I dont think this is the way. – Surya Nov 26 '18 at 09:24