summaryrefslogtreecommitdiff
path: root/app/workers/hashed_storage/project_migrate_worker.rb
blob: bcc80cc2a708f023e653eb5dc74a6a823030f380 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

module HashedStorage
  class ProjectMigrateWorker < BaseWorker # rubocop:disable Scalability/IdempotentWorker
    include ApplicationWorker

    data_consistency :always

    sidekiq_options retry: 3

    queue_namespace :hashed_storage
    loggable_arguments 1

    # https://gitlab.com/gitlab-org/gitlab/-/issues/340629
    tags :needs_own_queue

    attr_reader :project_id

    # rubocop: disable CodeReuse/ActiveRecord
    def perform(project_id, old_disk_path = nil)
      @project_id = project_id # we need to set this in order to create the lease_key

      try_obtain_lease do
        project = Project.without_deleted.find_by(id: project_id)
        break unless project && project.storage_upgradable?

        old_disk_path ||= Storage::LegacyProject.new(project).disk_path

        ::Projects::HashedStorage::MigrationService.new(project, old_disk_path, logger: logger).execute
      end
    end
    # rubocop: enable CodeReuse/ActiveRecord
  end
end