2021-08-09 23:11:50 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Scheduler::AccountsStatusesCleanupScheduler
|
|
|
|
include Sidekiq::Worker
|
2022-04-28 17:47:34 +02:00
|
|
|
include Redisable
|
2021-08-09 23:11:50 +02:00
|
|
|
|
|
|
|
# This limit is mostly to be nice to the fediverse at large and not
|
|
|
|
# generate too much traffic.
|
|
|
|
# This also helps limiting the running time of the scheduler itself.
|
2023-04-21 18:14:19 +02:00
|
|
|
MAX_BUDGET = 300
|
2021-08-09 23:11:50 +02:00
|
|
|
|
2023-04-21 18:14:19 +02:00
|
|
|
# This is an attempt to spread the load across remote servers, as
|
|
|
|
# spreading deletions across diverse accounts is likely to spread
|
|
|
|
# the deletion across diverse followers. It also helps each individual
|
|
|
|
# user see some effect sooner.
|
2021-08-09 23:11:50 +02:00
|
|
|
PER_ACCOUNT_BUDGET = 5
|
|
|
|
|
|
|
|
# This is an attempt to limit the workload generated by status removal
|
2023-04-21 18:14:19 +02:00
|
|
|
# jobs to something the particular server can handle.
|
|
|
|
PER_THREAD_BUDGET = 5
|
|
|
|
|
|
|
|
# These are latency limits on various queues above which a server is
|
|
|
|
# considered to be under load, causing the auto-deletion to be entirely
|
|
|
|
# skipped for that run.
|
|
|
|
LOAD_LATENCY_THRESHOLDS = {
|
|
|
|
default: 5,
|
|
|
|
push: 10,
|
|
|
|
# The `pull` queue has lower priority jobs, and it's unlikely that
|
|
|
|
# pushing deletes would cause much issues with this queue if it didn't
|
|
|
|
# cause issues with `default` and `push`. Yet, do not enqueue deletes
|
|
|
|
# if the instance is lagging behind too much.
|
|
|
|
pull: 5.minutes.to_i,
|
|
|
|
}.freeze
|
2021-08-09 23:11:50 +02:00
|
|
|
|
2023-02-23 16:52:40 +01:00
|
|
|
sidekiq_options retry: 0, lock: :until_executed, lock_ttl: 1.day.to_i
|
2021-08-09 23:11:50 +02:00
|
|
|
|
|
|
|
def perform
|
|
|
|
return if under_load?
|
|
|
|
|
|
|
|
budget = compute_budget
|
2023-05-03 10:31:40 +02:00
|
|
|
|
|
|
|
# If the budget allows it, we want to consider all accounts with enabled
|
|
|
|
# auto cleanup at least once.
|
|
|
|
#
|
|
|
|
# We start from `first_policy_id` (the last processed id in the previous
|
|
|
|
# run) and process each policy until we loop to `first_policy_id`,
|
|
|
|
# recording into `affected_policies` any policy that caused posts to be
|
|
|
|
# deleted.
|
|
|
|
#
|
|
|
|
# After that, we set `full_iteration` to `false` and continue looping on
|
|
|
|
# policies from `affected_policies`.
|
|
|
|
first_policy_id = last_processed_id || 0
|
|
|
|
first_iteration = true
|
|
|
|
full_iteration = true
|
|
|
|
affected_policies = []
|
2021-08-09 23:11:50 +02:00
|
|
|
|
|
|
|
loop do
|
|
|
|
num_processed_accounts = 0
|
|
|
|
|
2023-05-03 10:31:40 +02:00
|
|
|
scope = cleanup_policies(first_policy_id, affected_policies, first_iteration, full_iteration)
|
2021-08-09 23:11:50 +02:00
|
|
|
scope.find_each(order: :asc) do |policy|
|
|
|
|
num_deleted = AccountStatusesCleanupService.new.call(policy, [budget, PER_ACCOUNT_BUDGET].min)
|
|
|
|
budget -= num_deleted
|
2023-05-03 10:31:40 +02:00
|
|
|
|
|
|
|
unless num_deleted.zero?
|
|
|
|
num_processed_accounts += 1
|
|
|
|
affected_policies << policy.id if full_iteration
|
|
|
|
end
|
|
|
|
|
|
|
|
full_iteration = false if !first_iteration && policy.id >= first_policy_id
|
|
|
|
|
2021-08-09 23:11:50 +02:00
|
|
|
if budget.zero?
|
|
|
|
save_last_processed_id(policy.id)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# The idea here is to loop through all policies at least once until the budget is exhausted
|
|
|
|
# and start back after the last processed account otherwise
|
2023-05-03 10:31:40 +02:00
|
|
|
break if budget.zero? || (num_processed_accounts.zero? && !full_iteration)
|
2023-02-20 06:58:28 +01:00
|
|
|
|
2023-05-04 10:13:00 +02:00
|
|
|
full_iteration = false unless first_iteration
|
2023-05-03 10:31:40 +02:00
|
|
|
first_iteration = false
|
2021-08-09 23:11:50 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def compute_budget
|
2023-04-21 18:14:19 +02:00
|
|
|
# Each post deletion is a `RemovalWorker` job (on `default` queue), each
|
|
|
|
# potentially spawning many `ActivityPub::DeliveryWorker` jobs (on the `push` queue).
|
2023-02-20 02:28:40 +01:00
|
|
|
threads = Sidekiq::ProcessSet.new.select { |x| x['queues'].include?('push') }.pluck('concurrency').sum
|
2021-08-09 23:11:50 +02:00
|
|
|
[PER_THREAD_BUDGET * threads, MAX_BUDGET].min
|
|
|
|
end
|
|
|
|
|
|
|
|
def under_load?
|
2023-04-21 18:14:19 +02:00
|
|
|
LOAD_LATENCY_THRESHOLDS.any? { |queue, max_latency| queue_under_load?(queue, max_latency) }
|
2021-08-09 23:11:50 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2023-05-03 10:31:40 +02:00
|
|
|
def cleanup_policies(first_policy_id, affected_policies, first_iteration, full_iteration)
|
|
|
|
scope = AccountStatusesCleanupPolicy.where(enabled: true)
|
|
|
|
|
|
|
|
if full_iteration
|
|
|
|
# If we are doing a full iteration, examine all policies we have not examined yet
|
|
|
|
if first_iteration
|
|
|
|
scope.where(id: first_policy_id...)
|
|
|
|
else
|
|
|
|
scope.where(id: ..first_policy_id).or(scope.where(id: affected_policies))
|
|
|
|
end
|
|
|
|
else
|
|
|
|
# Otherwise, examine only policies that previously yielded posts to delete
|
|
|
|
scope.where(id: affected_policies)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-04-21 18:14:19 +02:00
|
|
|
def queue_under_load?(name, max_latency)
|
|
|
|
Sidekiq::Queue.new(name).latency > max_latency
|
2021-08-09 23:11:50 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def last_processed_id
|
2023-05-03 10:31:40 +02:00
|
|
|
redis.get('account_statuses_cleanup_scheduler:last_policy_id')&.to_i
|
2021-08-09 23:11:50 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def save_last_processed_id(id)
|
|
|
|
if id.nil?
|
2023-04-23 22:25:40 +02:00
|
|
|
redis.del('account_statuses_cleanup_scheduler:last_policy_id')
|
2021-08-09 23:11:50 +02:00
|
|
|
else
|
2023-04-23 22:25:40 +02:00
|
|
|
redis.set('account_statuses_cleanup_scheduler:last_policy_id', id, ex: 1.hour.seconds)
|
2021-08-09 23:11:50 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|