forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change account deletion requests to spread out over time (mastodon#20222
- Loading branch information
1 parent
e988337
commit 5333447
Showing
4 changed files
with
43 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters