summaryrefslogtreecommitdiff
path: root/db/post_migrate/20180604123514_cleanup_stages_position_migration.rb
blob: 5418f442e790c105dbb0f860f2d9f7e9e9b78087 (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
class CleanupStagesPositionMigration < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  TMP_INDEX_NAME = 'tmp_id_stage_position_partial_null_index'.freeze

  disable_ddl_transaction!

  class Stages < ActiveRecord::Base
    include EachBatch
    self.table_name = 'ci_stages'
  end

  def up
    disable_statement_timeout do
      Gitlab::BackgroundMigration.steal('MigrateStageIndex')

      unless index_exists_by_name?(:ci_stages, TMP_INDEX_NAME)
        add_concurrent_index(:ci_stages, :id, where: 'position IS NULL', name: TMP_INDEX_NAME)
      end

      migratable = <<~SQL
        position IS NULL AND EXISTS (
          SELECT 1 FROM ci_builds WHERE stage_id = ci_stages.id AND stage_idx IS NOT NULL
        )
      SQL

      Stages.where(migratable).each_batch(of: 1000) do |batch|
        batch.pluck(:id).each do |stage|
          Gitlab::BackgroundMigration::MigrateStageIndex.new.perform(stage, stage)
        end
      end

      remove_concurrent_index_by_name(:ci_stages, TMP_INDEX_NAME)
    end
  end

  def down
    if index_exists_by_name?(:ci_stages, TMP_INDEX_NAME)
      disable_statement_timeout do
        remove_concurrent_index_by_name(:ci_stages, TMP_INDEX_NAME)
      end
    end
  end
end