mirror of
https://github.com/mastodon/mastodon.git
synced 2025-12-17 09:33:16 +00:00
Some checks are pending
Check i18n / check-i18n (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / lint (push) Waiting to run
CSS Linting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.1) (push) Blocked by required conditions
Ruby Testing / test (3.2) (push) Blocked by required conditions
Ruby Testing / Libvips tests (.ruby-version) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.1) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.2) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.1) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.1, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
66 lines
1.8 KiB
Ruby
66 lines
1.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative '../../lib/mastodon/sidekiq_middleware'
|
|
|
|
SIDEKIQ_WILL_PROCESSES_JOBS_FILE = Rails.root.join('tmp', 'sidekiq_process_has_started_and_will_begin_processing_jobs').freeze
|
|
|
|
Sidekiq.configure_server do |config|
|
|
config.redis = REDIS_SIDEKIQ_PARAMS
|
|
|
|
# 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
|
|
config.on(:startup) do
|
|
FileUtils.touch(SIDEKIQ_WILL_PROCESSES_JOBS_FILE)
|
|
end
|
|
|
|
config.on(:shutdown) do
|
|
FileUtils.rm_f(SIDEKIQ_WILL_PROCESSES_JOBS_FILE)
|
|
end
|
|
|
|
config.server_middleware do |chain|
|
|
chain.add Mastodon::SidekiqMiddleware
|
|
end
|
|
|
|
config.server_middleware do |chain|
|
|
chain.add SidekiqUniqueJobs::Middleware::Server
|
|
end
|
|
|
|
config.client_middleware do |chain|
|
|
chain.add SidekiqUniqueJobs::Middleware::Client
|
|
end
|
|
|
|
config.on(:startup) do
|
|
if SelfDestructHelper.self_destruct?
|
|
Sidekiq.schedule = {
|
|
'self_destruct_scheduler' => {
|
|
'interval' => ['1m'],
|
|
'class' => 'Scheduler::SelfDestructScheduler',
|
|
'queue' => 'scheduler',
|
|
},
|
|
}
|
|
SidekiqScheduler::Scheduler.instance.reload_schedule!
|
|
end
|
|
end
|
|
|
|
SidekiqUniqueJobs::Server.configure(config)
|
|
end
|
|
|
|
Sidekiq.configure_client do |config|
|
|
config.redis = REDIS_SIDEKIQ_PARAMS
|
|
|
|
config.client_middleware do |chain|
|
|
chain.add SidekiqUniqueJobs::Middleware::Client
|
|
end
|
|
end
|
|
|
|
Sidekiq.logger.level = ::Logger.const_get(ENV.fetch('RAILS_LOG_LEVEL', 'info').upcase.to_s)
|
|
|
|
SidekiqUniqueJobs.configure do |config|
|
|
config.enabled = !Rails.env.test?
|
|
config.reaper = :ruby
|
|
config.reaper_count = 1000
|
|
config.reaper_interval = 600
|
|
config.reaper_timeout = 150
|
|
config.lock_ttl = 50.days.to_i
|
|
end
|