summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230209090702_fix_partition_ids_for_ci_build_report_result.rb
blob: d21d986ee31e25ca8688ab417ff49930e5aa74c7 (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
# frozen_string_literal: true

class FixPartitionIdsForCiBuildReportResult < Gitlab::Database::Migration[2.1]
  MIGRATION = 'RebalancePartitionId'
  DELAY_INTERVAL = 2.minutes.freeze
  TABLE = :ci_build_report_results
  BATCH_SIZE = 2_000
  SUB_BATCH_SIZE = 200

  restrict_gitlab_migration gitlab_schema: :gitlab_ci

  def up
    return unless Gitlab.com?

    queue_batched_background_migration(
      MIGRATION,
      TABLE,
      :build_id,
      job_interval: DELAY_INTERVAL,
      batch_size: BATCH_SIZE,
      sub_batch_size: SUB_BATCH_SIZE
    )
  end

  def down
    return unless Gitlab.com?

    delete_batched_background_migration(MIGRATION, TABLE, :build_id, [])
  end
end