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

20220707075300_reschedule_backfill_imported_issue_search_data.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 912578d6b7ce42946364cd441f3c0304962e344e (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
46
47
48
# frozen_string_literal: true

class RescheduleBackfillImportedIssueSearchData < Gitlab::Database::Migration[2.0]
  disable_ddl_transaction!
  restrict_gitlab_migration gitlab_schema: :gitlab_main

  MIGRATION = 'BackfillImportedIssueSearchData'
  DELAY_INTERVAL = 120.seconds
  BATCH_SIZE = 50_000
  SUB_BATCH_SIZE = 1_000

  def up
    # remove the original migration
    delete_batched_background_migration(MIGRATION, :issues, :id, [])

    # reschedule the migration
    queue_batched_background_migration(
      MIGRATION,
      :issues,
      :id,
      job_interval: DELAY_INTERVAL,
      batch_min_value: min_value,
      batch_size: BATCH_SIZE,
      sub_batch_size: SUB_BATCH_SIZE
    )
  end

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

  private

  def min_value
    start_value = Gitlab::Database::BackgroundMigration::BatchedMigration.find_by(
      job_class_name: "BackfillIssueSearchData"
    )&.max_value

    return BATCH_MIN_VALUE unless start_value

    max_value = Issue.maximum(:id)

    return BATCH_MIN_VALUE unless max_value

    # Just in case the issue's max ID is now lower than the history in the table
    [start_value, max_value].min
  end
end