Add retention policy for cached content and media (#19232)
This commit is contained in:
parent
3e0999cd11
commit
5c9abdeff1
30 changed files with 559 additions and 135 deletions
56
app/workers/scheduler/vacuum_scheduler.rb
Normal file
56
app/workers/scheduler/vacuum_scheduler.rb
Normal file
|
@ -0,0 +1,56 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class Scheduler::VacuumScheduler
|
||||
include Sidekiq::Worker
|
||||
|
||||
sidekiq_options retry: 0
|
||||
|
||||
def perform
|
||||
vacuum_operations.each do |operation|
|
||||
operation.perform
|
||||
rescue => e
|
||||
Rails.logger.error("Error while running #{operation.class.name}: #{e}")
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def vacuum_operations
|
||||
[
|
||||
statuses_vacuum,
|
||||
media_attachments_vacuum,
|
||||
preview_cards_vacuum,
|
||||
backups_vacuum,
|
||||
access_tokens_vacuum,
|
||||
feeds_vacuum,
|
||||
]
|
||||
end
|
||||
|
||||
def statuses_vacuum
|
||||
Vacuum::StatusesVacuum.new(content_retention_policy.content_cache_retention_period)
|
||||
end
|
||||
|
||||
def media_attachments_vacuum
|
||||
Vacuum::MediaAttachmentsVacuum.new(content_retention_policy.media_cache_retention_period)
|
||||
end
|
||||
|
||||
def preview_cards_vacuum
|
||||
Vacuum::PreviewCardsVacuum.new(content_retention_policy.media_cache_retention_period)
|
||||
end
|
||||
|
||||
def backups_vacuum
|
||||
Vacuum::BackupsVacuum.new(content_retention_policy.backups_retention_period)
|
||||
end
|
||||
|
||||
def access_tokens_vacuum
|
||||
Vacuum::AccessTokensVacuum.new
|
||||
end
|
||||
|
||||
def feeds_vacuum
|
||||
Vacuum::FeedsVacuum.new
|
||||
end
|
||||
|
||||
def content_retention_policy
|
||||
ContentRetentionPolicy.current
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue