summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170630111158_migrate_stages_statuses.rb
blob: 2bc067e5d900c4a1c5ca6840916438a32f8ad07a (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
class MigrateStagesStatuses < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  BATCH_SIZE = 10000
  MIGRATION = 'MigrateStageStatus'.freeze

  class Stage < ActiveRecord::Base
    self.table_name = 'ci_stages'
  end

  def up
    index = 1

    Stage.where(status: nil).in_batches(of: BATCH_SIZE) do |relation|
      jobs = relation.pluck(:id).map { |id| [MIGRATION, [id]] }
      schedule = index * 5.minutes
      index += 1

      BackgroundMigrationWorker.perform_bulk_in(schedule, jobs)
    end
  end

  def down
    disable_statement_timeout

    execute <<-SQL.strip_heredoc
      UPDATE ci_stages SET status = null
    SQL
  end
end