Skip to content

Commit

Permalink
Change account deletion requests to spread out over time (mastodon#20222
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ClearlyClaire authored Nov 9, 2022
1 parent e988337 commit 5333447
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/workers/admin/account_deletion_worker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class Admin::AccountDeletionWorker
include Sidekiq::Worker

sidekiq_options queue: 'pull'
sidekiq_options queue: 'pull', lock: :until_executed

def perform(account_id)
DeleteAccountService.new.call(Account.find(account_id), reserve_username: true, reserve_email: true)
Expand Down
38 changes: 38 additions & 0 deletions app/workers/scheduler/suspended_user_cleanup_scheduler.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# frozen_string_literal: true

class Scheduler::SuspendedUserCleanupScheduler
include Sidekiq::Worker

# Each processed deletion request may enqueue an enormous
# amount of jobs in the `pull` queue, so only enqueue when
# the queue is empty or close to being so.
MAX_PULL_SIZE = 50

# Since account deletion is very expensive, we want to avoid
# overloading the server by queing too much at once.
# This job runs approximately once per 2 minutes, so with a
# value of `MAX_DELETIONS_PER_JOB` of 10, a server can
# handle the deletion of 7200 accounts per day, provided it
# has the capacity for it.
MAX_DELETIONS_PER_JOB = 10

sidekiq_options retry: 0

def perform
return if Sidekiq::Queue.new('pull').size > MAX_PULL_SIZE

clean_suspended_accounts!
end

private

def clean_suspended_accounts!
# This should be fine because we only process a small amount of deletion requests at once and
# `id` and `created_at` should follow the same order.
AccountDeletionRequest.reorder(id: :asc).take(MAX_DELETIONS_PER_JOB).each do |deletion_request|
next unless deletion_request.created_at < AccountDeletionRequest::DELAY_TO_DELETION.ago

Admin::AccountDeletionWorker.perform_async(deletion_request.account_id)
end
end
end
7 changes: 0 additions & 7 deletions app/workers/scheduler/user_cleanup_scheduler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ class Scheduler::UserCleanupScheduler

def perform
clean_unconfirmed_accounts!
clean_suspended_accounts!
clean_discarded_statuses!
end

Expand All @@ -22,12 +21,6 @@ def clean_unconfirmed_accounts!
end
end

def clean_suspended_accounts!
AccountDeletionRequest.where('created_at <= ?', AccountDeletionRequest::DELAY_TO_DELETION.ago).reorder(nil).find_each do |deletion_request|
Admin::AccountDeletionWorker.perform_async(deletion_request.account_id)
end
end

def clean_discarded_statuses!
Status.unscoped.discarded.where('deleted_at <= ?', 30.days.ago).find_in_batches do |statuses|
RemovalWorker.push_bulk(statuses) do |status|
Expand Down
4 changes: 4 additions & 0 deletions config/sidekiq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,7 @@
interval: 1 minute
class: Scheduler::AccountsStatusesCleanupScheduler
queue: scheduler
suspended_user_cleanup_scheduler:
interval: 1 minute
class: Scheduler::SuspendedUserCleanupScheduler
queue: scheduler

0 comments on commit 5333447

Please sign in to comment.