mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Merge 9778204e5d
into a50c8e951f
This commit is contained in:
commit
b82a547ab3
3 changed files with 6 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class ActivityPub::LowPriorityDeliveryWorker < ActivityPub::DeliveryWorker
|
||||
sidekiq_options queue: 'pull', retry: 8, dead: false
|
||||
sidekiq_options queue: 'low_priority', retry: 8, dead: false
|
||||
end
|
||||
|
|
|
@ -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('pull').size > MAX_PULL_SIZE
|
||||
return if Sidekiq::Queue.new('low_priority').size > MAX_QUEUE_SIZE
|
||||
|
||||
process_deletion_requests!
|
||||
end
|
||||
|
|
|
@ -4,8 +4,9 @@
|
|||
- [default, 8]
|
||||
- [push, 6]
|
||||
- [ingress, 4]
|
||||
- [mailers, 2]
|
||||
- [pull]
|
||||
- [mailers, 3]
|
||||
- [pull, 2]
|
||||
- [low_priority]
|
||||
- [scheduler]
|
||||
|
||||
:scheduler:
|
||||
|
|
Loading…
Reference in a new issue