2018-11-21 06:35:40 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-12 10:38:40 -05:00
|
|
|
class ScheduleRunnersTokenEncryption < ActiveRecord::Migration[4.2]
|
2018-11-21 06:35:40 -05:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
BATCH_SIZE = 10000
|
2018-11-23 07:37:32 -05:00
|
|
|
RANGE_SIZE = 2000
|
2018-11-21 06:35:40 -05:00
|
|
|
MIGRATION = 'EncryptRunnersTokens'
|
|
|
|
|
|
|
|
MODELS = [
|
|
|
|
::Gitlab::BackgroundMigration::Models::EncryptColumns::Settings,
|
|
|
|
::Gitlab::BackgroundMigration::Models::EncryptColumns::Namespace,
|
|
|
|
::Gitlab::BackgroundMigration::Models::EncryptColumns::Project,
|
|
|
|
::Gitlab::BackgroundMigration::Models::EncryptColumns::Runner
|
|
|
|
].freeze
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
|
|
|
MODELS.each do |model|
|
|
|
|
model.each_batch(of: BATCH_SIZE) do |relation, index|
|
2018-11-23 07:37:32 -05:00
|
|
|
delay = index * 4.minutes
|
2018-11-21 06:35:40 -05:00
|
|
|
|
|
|
|
relation.each_batch(of: RANGE_SIZE) do |relation|
|
|
|
|
range = relation.pluck('MIN(id)', 'MAX(id)').first
|
2018-11-23 07:28:29 -05:00
|
|
|
args = [model.name.demodulize.downcase, *range]
|
2018-11-21 06:35:40 -05:00
|
|
|
|
|
|
|
BackgroundMigrationWorker.perform_in(delay, MIGRATION, args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
# no-op
|
|
|
|
end
|
|
|
|
end
|