Update suspended_user_cleanup_scheduler.rb

This commit is contained in:
Shlee 2024-05-06 23:15:09 +09:30 committed by GitHub
parent 7caf605384
commit da416534eb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@ class Scheduler::SuspendedUserCleanupScheduler
# 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
MAX_QUEUE_SIZE = 50
# Since account deletion is very expensive, we want to avoid
# overloading the server by queuing too much at once.
@ -19,7 +19,7 @@ class Scheduler::SuspendedUserCleanupScheduler
sidekiq_options retry: 0, lock: :until_executed, lock_ttl: 1.day.to_i
def perform
return if Sidekiq::Queue.new('low_delivery').size > MAX_PULL_SIZE
return if Sidekiq::Queue.new('low_delivery').size > MAX_QUEUE_SIZE
process_deletion_requests!
end