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

20220601151900_schedule_backfill_ci_runner_semver.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c62ec1b87b7840efa7339b399e3340e076bad88 (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
# frozen_string_literal: true

class ScheduleBackfillCiRunnerSemver < Gitlab::Database::Migration[2.0]
  restrict_gitlab_migration gitlab_schema: :gitlab_ci

  MIGRATION = 'BackfillCiRunnerSemver'
  INTERVAL = 2.minutes.freeze
  BATCH_SIZE = 500
  MAX_BATCH_SIZE = 10_000
  SUB_BATCH_SIZE = 100

  disable_ddl_transaction!

  def up
    # Disabled background migration introduced in same milestone as it was decided to change approach
    # and the semver column will no longer be needed
    # queue_batched_background_migration(
    #   MIGRATION,
    #   :ci_runners,
    #   :id,
    #   job_interval: INTERVAL,
    #   batch_size: BATCH_SIZE,
    #   max_batch_size: MAX_BATCH_SIZE,
    #   sub_batch_size: SUB_BATCH_SIZE
    # )
  end

  def down
    delete_batched_background_migration(MIGRATION, :ci_runners, :id, [])
  end
end