|
|
@ -38,17 +38,37 @@ class Scheduler::AccountsStatusesCleanupScheduler
|
|
|
|
return if under_load?
|
|
|
|
return if under_load?
|
|
|
|
|
|
|
|
|
|
|
|
budget = compute_budget
|
|
|
|
budget = compute_budget
|
|
|
|
first_policy_id = last_processed_id
|
|
|
|
|
|
|
|
|
|
|
|
# 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 = []
|
|
|
|
|
|
|
|
|
|
|
|
loop do
|
|
|
|
loop do
|
|
|
|
num_processed_accounts = 0
|
|
|
|
num_processed_accounts = 0
|
|
|
|
|
|
|
|
|
|
|
|
scope = AccountStatusesCleanupPolicy.where(enabled: true)
|
|
|
|
scope = cleanup_policies(first_policy_id, affected_policies, first_iteration, full_iteration)
|
|
|
|
scope = scope.where(id: first_policy_id...) if first_policy_id.present?
|
|
|
|
|
|
|
|
scope.find_each(order: :asc) do |policy|
|
|
|
|
scope.find_each(order: :asc) do |policy|
|
|
|
|
num_deleted = AccountStatusesCleanupService.new.call(policy, [budget, PER_ACCOUNT_BUDGET].min)
|
|
|
|
num_deleted = AccountStatusesCleanupService.new.call(policy, [budget, PER_ACCOUNT_BUDGET].min)
|
|
|
|
num_processed_accounts += 1 unless num_deleted.zero?
|
|
|
|
|
|
|
|
budget -= num_deleted
|
|
|
|
budget -= num_deleted
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
if budget.zero?
|
|
|
|
if budget.zero?
|
|
|
|
save_last_processed_id(policy.id)
|
|
|
|
save_last_processed_id(policy.id)
|
|
|
|
break
|
|
|
|
break
|
|
|
@ -57,9 +77,9 @@ class Scheduler::AccountsStatusesCleanupScheduler
|
|
|
|
|
|
|
|
|
|
|
|
# The idea here is to loop through all policies at least once until the budget is exhausted
|
|
|
|
# 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
|
|
|
|
# and start back after the last processed account otherwise
|
|
|
|
break if budget.zero? || (num_processed_accounts.zero? && first_policy_id.nil?)
|
|
|
|
break if budget.zero? || (num_processed_accounts.zero? && !full_iteration)
|
|
|
|
|
|
|
|
|
|
|
|
first_policy_id = nil
|
|
|
|
first_iteration = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
@ -76,12 +96,28 @@ class Scheduler::AccountsStatusesCleanupScheduler
|
|
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
def queue_under_load?(name, max_latency)
|
|
|
|
def queue_under_load?(name, max_latency)
|
|
|
|
Sidekiq::Queue.new(name).latency > max_latency
|
|
|
|
Sidekiq::Queue.new(name).latency > max_latency
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def last_processed_id
|
|
|
|
def last_processed_id
|
|
|
|
redis.get('account_statuses_cleanup_scheduler:last_policy_id')
|
|
|
|
redis.get('account_statuses_cleanup_scheduler:last_policy_id')&.to_i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def save_last_processed_id(id)
|
|
|
|
def save_last_processed_id(id)
|
|
|
|