debian-mirror-gitlab/app/services/authorized_project_update/periodic_recalculate_service.rb

19 lines
648 B
Ruby
Raw Normal View History

2020-07-01 16:08:20 +05:30
# frozen_string_literal: true
module AuthorizedProjectUpdate
class PeriodicRecalculateService
2021-04-17 20:07:23 +05:30
BATCH_SIZE = 450
DELAY_INTERVAL = 50.seconds.to_i
2020-07-01 16:08:20 +05:30
def execute
# Using this approach (instead of eg. User.each_batch) keeps the arguments
# the same for AuthorizedProjectUpdate::UserRefreshOverUserRangeWorker
# even if the user list changes, so we can deduplicate these jobs.
(1..User.maximum(:id)).each_slice(BATCH_SIZE).with_index do |batch, index|
delay = DELAY_INTERVAL * index
AuthorizedProjectUpdate::UserRefreshOverUserRangeWorker.perform_in(delay, *batch.minmax)
end
end
end
end