20180914162043_encrypt_web_hooks_columns.rb 741 Bytes
Newer Older
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
# frozen_string_literal: true

class EncryptWebHooksColumns < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  BATCH_SIZE = 10000
  RANGE_SIZE = 100
  MIGRATION = 'EncryptColumns'
  COLUMNS = [:token, :url]

  WebHook = ::Gitlab::BackgroundMigration::Models::EncryptColumns::WebHook

  disable_ddl_transaction!

  def up
    WebHook.each_batch(of: BATCH_SIZE) do |relation, index|
      delay = index * 2.minutes

      relation.each_batch(of: RANGE_SIZE) do |relation|
        range = relation.pluck('MIN(id)', 'MAX(id)').first
        args = [WebHook, COLUMNS, *range]

        BackgroundMigrationWorker.perform_in(delay, MIGRATION, args)
      end
    end
  end

  def down
    # noop
  end
end