summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220208115439_start_backfill_ci_queuing_tables.rb
blob: 82e361742904293afbcfa808fa1c8dd4042220e6 (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
# frozen_string_literal: true

class StartBackfillCiQueuingTables < Gitlab::Database::Migration[1.0]
  MIGRATION = 'BackfillCiQueuingTables'
  BATCH_SIZE = 500
  DELAY_INTERVAL = 2.minutes

  disable_ddl_transaction!

  def up
    return if Gitlab.com?

    queue_background_migration_jobs_by_range_at_intervals(
      Gitlab::BackgroundMigration::BackfillCiQueuingTables::Ci::Build.pending,
      MIGRATION,
      DELAY_INTERVAL,
      batch_size: BATCH_SIZE,
      track_jobs: true)
  end

  def down
    # no-op
  end
end