summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200427064130_cleanup_optimistic_locking_nulls_pt2_fixed.rb
blob: 63f85fc71567df9d1d0348a122aad3f61ad93574 (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
# frozen_string_literal: true

class CleanupOptimisticLockingNullsPt2Fixed < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  TABLES = %w(ci_stages ci_builds ci_pipelines).freeze
  BATCH_SIZE = 10_000

  def declare_class(table)
    Class.new(ActiveRecord::Base) do
      include EachBatch

      self.table_name = table
      self.inheritance_column = :_type_disabled # Disable STI
    end
  end

  def up
    last_table_final_delay = 0

    TABLES.each do |table|
      # cleanup wrong index created in the previous migration, it might be there on staging
      remove_concurrent_index table.to_sym, :lock_version, where: "lock_version IS NULL"

      add_concurrent_index table.to_sym, :id, where: "lock_version IS NULL", name: "tmp_index_#{table}_lock_version"

      last_table_final_delay = queue_background_migration_jobs_by_range_at_intervals(
        declare_class(table).where(lock_version: nil),
        'CleanupOptimisticLockingNulls',
        2.minutes,
        batch_size: BATCH_SIZE,
        other_job_arguments: [table],
        initial_delay: last_table_final_delay
      )
    end
  end

  def down
    TABLES.each do |table|
      remove_concurrent_index table.to_sym, :id, where: "lock_version IS NULL", name: "tmp_index_#{table}_lock_version"
    end
  end
end