# Sample configuration file for Sidekiq. # Options here can still be overridden by cmd line args. # Place this file at config/sidekiq.yml and Sidekiq will # pick it up automatically. --- :verbose: false :logfile: ./log/sidekiq.log :concurrency: <%= ENV.fetch("SIDEKIQ_CONCURRENCY", 10) %> :timeout: 25 :max_retries: 3 # https://phil.tech/2016/tips-on-sidekiq-queues/ :queues: - [update_yetto, 10] - [default, 5] - [mailers, 3] - [active_storage_analysis, 1] - [active_storage_purge, 1]