summaryrefslogtreecommitdiff
path: root/db/migrate/20180420010616_cleanup_build_stage_migration.rb
blob: 247772941014fc8803abd00369d6af14628f5d6a (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
49
50
51
52
53
54
55
56
57
58
59
60
61
class CleanupBuildStageMigration < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  TMP_INDEX = 'tmp_id_stage_partial_null_index'.freeze

  disable_ddl_transaction!

  class Build < ActiveRecord::Base
    include EachBatch

    self.table_name = 'ci_builds'
    self.inheritance_column = :_type_disabled
  end

  def up
    disable_statement_timeout

    ##
    # We steal from the background migrations queue to catch up with the
    # scheduled migrations set.
    #
    Gitlab::BackgroundMigration.steal('MigrateBuildStage')

    ##
    # We add temporary index, to make iteration over batches more performant.
    # Conditional here is to avoid the need of doing that in a separate
    # migration file to make this operation idempotent.
    #
    unless index_exists_by_name?(:ci_builds, TMP_INDEX)
      add_concurrent_index(:ci_builds, :id, where: 'stage_id IS NULL', name: TMP_INDEX)
    end

    ##
    # We check if there are remaining rows that should be migrated (for example
    # if Sidekiq / Redis fails / is restarted, what could result in not all
    # background migrations being executed correctly.
    #
    # We migrate remaining rows synchronously in a blocking way, to make sure
    # that when this migration is done we are confident that all rows are
    # already migrated.
    #
    Build.where('stage_id IS NULL').each_batch(of: 50) do |batch|
      range = batch.pluck('MIN(id)', 'MAX(id)').first

      Gitlab::BackgroundMigration::MigrateBuildStage.new.perform(*range)
    end

    ##
    # We remove temporary index, because it is not required during standard
    # operations and runtime.
    #
    remove_concurrent_index_by_name(:ci_builds, TMP_INDEX)
  end

  def down
    if index_exists_by_name?(:ci_builds, TMP_INDEX)
      remove_concurrent_index_by_name(:ci_builds, TMP_INDEX)
    end
  end
end