summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/reset_too_many_tags_skipped_registry_imports.rb
blob: 83a7eb0b4cc5d6c9a8e7ac7dd189196a1998df6a (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
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # A job to reset container_repositories that were skipped in the phase 2 registry
    # migration due to too many tags.
    class ResetTooManyTagsSkippedRegistryImports # rubocop:disable Migration/BackgroundMigrationBaseClass
      class ContainerRepository < ::ApplicationRecord # rubocop:disable Style/Documentation
        include EachBatch

        self.table_name = 'container_repositories'

        scope :base_query, -> { where(migration_state: 'import_skipped', migration_skipped_reason: 2) }
      end

      def perform(start_id, end_id)
        ContainerRepository.base_query.where(id: start_id..end_id).each_batch(of: 100) do |sub_batch|
          sub_batch.update_all(
            migration_pre_import_started_at: nil,
            migration_pre_import_done_at: nil,
            migration_import_started_at: nil,
            migration_import_done_at: nil,
            migration_aborted_at: nil,
            migration_skipped_at: nil,
            migration_retries_count: 0,
            migration_skipped_reason: nil,
            migration_state: 'default',
            migration_aborted_in_state: nil
          )
        end

        mark_job_as_succeeded(start_id, end_id)
      end

      private

      def mark_job_as_succeeded(*arguments)
        ::Gitlab::Database::BackgroundMigrationJob.mark_all_as_succeeded(
          self.class.name.demodulize,
          arguments
        )
      end
    end
  end
end