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

20180604123514_cleanup_stages_position_migration.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73c23dffca0ebc1da3c0ced3a23f5bee6b233660 (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
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

    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

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