2017-05-04 06:18:13 +09:00
|
|
|
# frozen_string_literal: true
|
2016-03-25 10:50:48 +09:00
|
|
|
|
2022-04-29 00:47:34 +09:00
|
|
|
require_relative '../../lib/mastodon/sidekiq_middleware'
|
2021-12-27 08:47:20 +09:00
|
|
|
|
2016-03-25 10:50:48 +09:00
|
|
|
Sidekiq.configure_server do |config|
|
2024-09-02 23:19:55 +09:00
|
|
|
config.redis = REDIS_CONFIGURATION.sidekiq
|
2018-02-25 03:16:11 +09:00
|
|
|
|
2024-07-09 19:47:08 +09:00
|
|
|
# This is used in Kubernetes setups, to signal that the Sidekiq process has started and will begin processing jobs
|
|
|
|
# This comes from https://github.com/sidekiq/sidekiq/wiki/Kubernetes#sidekiq
|
2024-07-10 21:57:25 +09:00
|
|
|
ready_filename = ENV.fetch('MASTODON_SIDEKIQ_READY_FILENAME', nil)
|
|
|
|
if ready_filename
|
|
|
|
raise 'MASTODON_SIDEKIQ_READY_FILENAME is not a valid filename' if File.basename(ready_filename) != ready_filename
|
|
|
|
|
|
|
|
ready_path = Rails.root.join('tmp', ready_filename)
|
|
|
|
|
|
|
|
config.on(:startup) do
|
|
|
|
FileUtils.touch(ready_path)
|
|
|
|
end
|
2024-07-09 19:47:08 +09:00
|
|
|
|
2024-07-10 21:57:25 +09:00
|
|
|
config.on(:shutdown) do
|
|
|
|
FileUtils.rm_f(ready_path)
|
|
|
|
end
|
2024-07-09 19:47:08 +09:00
|
|
|
end
|
|
|
|
|
2018-02-25 03:16:11 +09:00
|
|
|
config.server_middleware do |chain|
|
2022-04-29 00:47:34 +09:00
|
|
|
chain.add Mastodon::SidekiqMiddleware
|
2018-02-25 03:16:11 +09:00
|
|
|
end
|
2020-04-01 04:59:03 +09:00
|
|
|
|
2021-03-15 19:17:43 +09:00
|
|
|
config.server_middleware do |chain|
|
|
|
|
chain.add SidekiqUniqueJobs::Middleware::Server
|
|
|
|
end
|
|
|
|
|
|
|
|
config.client_middleware do |chain|
|
|
|
|
chain.add SidekiqUniqueJobs::Middleware::Client
|
2020-04-01 04:59:03 +09:00
|
|
|
end
|
2021-03-15 19:17:43 +09:00
|
|
|
|
2023-10-24 00:46:21 +09:00
|
|
|
config.on(:startup) do
|
|
|
|
if SelfDestructHelper.self_destruct?
|
|
|
|
Sidekiq.schedule = {
|
|
|
|
'self_destruct_scheduler' => {
|
|
|
|
'interval' => ['1m'],
|
|
|
|
'class' => 'Scheduler::SelfDestructScheduler',
|
|
|
|
'queue' => 'scheduler',
|
|
|
|
},
|
|
|
|
}
|
2024-02-07 00:32:09 +09:00
|
|
|
SidekiqScheduler::Scheduler.instance.reload_schedule!
|
2023-10-24 00:46:21 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-03-15 19:17:43 +09:00
|
|
|
SidekiqUniqueJobs::Server.configure(config)
|
2016-03-25 10:50:48 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
Sidekiq.configure_client do |config|
|
2024-09-02 23:19:55 +09:00
|
|
|
config.redis = REDIS_CONFIGURATION.sidekiq
|
2021-03-15 19:17:43 +09:00
|
|
|
|
|
|
|
config.client_middleware do |chain|
|
|
|
|
chain.add SidekiqUniqueJobs::Middleware::Client
|
|
|
|
end
|
2016-03-25 10:50:48 +09:00
|
|
|
end
|
2018-04-10 23:08:28 +09:00
|
|
|
|
2020-03-21 12:04:54 +09:00
|
|
|
Sidekiq.logger.level = ::Logger.const_get(ENV.fetch('RAILS_LOG_LEVEL', 'info').upcase.to_s)
|
2021-03-15 19:17:43 +09:00
|
|
|
|
|
|
|
SidekiqUniqueJobs.configure do |config|
|
2023-11-10 01:19:04 +09:00
|
|
|
config.enabled = !Rails.env.test?
|
2021-03-15 19:17:43 +09:00
|
|
|
config.reaper = :ruby
|
|
|
|
config.reaper_count = 1000
|
|
|
|
config.reaper_interval = 600
|
|
|
|
config.reaper_timeout = 150
|
2022-10-26 19:10:48 +09:00
|
|
|
config.lock_ttl = 50.days.to_i
|
2021-03-15 19:17:43 +09:00
|
|
|
end
|