Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20211208122201_schedule_backfill_ci_project_mirrors.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5678ee9f29286e042728f99726a283faf4010031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

class ScheduleBackfillCiProjectMirrors < Gitlab::Database::Migration[1.0]
  MIGRATION = 'BackfillCiProjectMirrors'
  BATCH_SIZE = 10_000
  DELAY_INTERVAL = 2.minutes

  disable_ddl_transaction!

  def up
    queue_background_migration_jobs_by_range_at_intervals(
      Gitlab::BackgroundMigration::BackfillCiProjectMirrors::Project.base_query,
      MIGRATION,
      DELAY_INTERVAL,
      batch_size: BATCH_SIZE,
      track_jobs: true
    )
  end

  def down
    # no-op
  end
end