summaryrefslogtreecommitdiff
path: root/app/workers/hashed_storage/migrator_worker.rb
blob: 735d8a2447acc6a5adf7c8a4e041d6ade62b720e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module HashedStorage
  class MigratorWorker # rubocop:disable Scalability/IdempotentWorker
    include ApplicationWorker

    sidekiq_options retry: 3

    queue_namespace :hashed_storage
    feature_category :source_code_management
    tags :exclude_from_gitlab_com

    # @param [Integer] start initial ID of the batch
    # @param [Integer] finish last ID of the batch
    def perform(start, finish)
      migrator = Gitlab::HashedStorage::Migrator.new
      migrator.bulk_migrate(start: start, finish: finish)
    end
  end
end