How to limit the failed job retry counter with ActiveJob and Sidekiq?

删除回忆录丶 提交于 2019-12-08 03:43:33

问题


I would like to limit the number of retries when a job fails using ActiveJob with Sidekiq as adapter.

Using Sidekiq, I can do that:

class LessRetryableWorker
  include Sidekiq::Worker
  sidekiq_options :retry => 5

  def perform(...)
  end
end

Sidekiq configuration doesn't provide a global retry config. Each Worker is responsible of setting the retry option. So I guess I have to implement it in ActiveJob side to do it properly.


回答1:


Sidekiq provide a server-level config to handle this case. From Sidekiq ruby-doc:

Sidekiq.configure_server do |config|
  config.server_middleware do |chain|
    chain.add Middleware::Server::RetryJobs, :max_retries => 7
  end
end


来源:https://stackoverflow.com/questions/28214334/how-to-limit-the-failed-job-retry-counter-with-activejob-and-sidekiq

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!