2021-04-17 20:07:23 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Database
|
|
|
|
module BackgroundMigration
|
2021-04-29 21:17:54 +05:30
|
|
|
class BatchedMigrationRunner
|
|
|
|
def initialize(migration_wrapper = BatchedMigrationWrapper.new)
|
|
|
|
@migration_wrapper = migration_wrapper
|
|
|
|
end
|
2021-04-17 20:07:23 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
# Runs the next batched_job for a batched_background_migration.
|
|
|
|
#
|
|
|
|
# The batch bounds of the next job are calculated at runtime, based on the migration
|
|
|
|
# configuration and the bounds of the most recently created batched_job. Updating the
|
|
|
|
# migration configuration will cause future jobs to use the updated batch sizes.
|
|
|
|
#
|
|
|
|
# The job instance will automatically receive a set of arguments based on the migration
|
|
|
|
# configuration. For more details, see the BatchedMigrationWrapper class.
|
|
|
|
#
|
|
|
|
# Note that this method is primarily intended to called by a scheduled worker.
|
|
|
|
def run_migration_job(active_migration)
|
2021-04-17 20:07:23 +05:30
|
|
|
if next_batched_job = create_next_batched_job!(active_migration)
|
|
|
|
migration_wrapper.perform(next_batched_job)
|
|
|
|
else
|
|
|
|
finish_active_migration(active_migration)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
# Runs all remaining batched_jobs for a batched_background_migration.
|
|
|
|
#
|
|
|
|
# This method is intended to be used in a test/dev environment to execute the background
|
|
|
|
# migration inline. It should NOT be used in a real environment for any non-trivial migrations.
|
|
|
|
def run_entire_migration(migration)
|
|
|
|
unless Rails.env.development? || Rails.env.test?
|
|
|
|
raise 'this method is not intended for use in real environments'
|
|
|
|
end
|
|
|
|
|
|
|
|
while migration.active?
|
|
|
|
run_migration_job(migration)
|
|
|
|
|
|
|
|
migration.reload_last_job
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
private
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
attr_reader :migration_wrapper
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
def create_next_batched_job!(active_migration)
|
|
|
|
next_batch_range = find_next_batch_range(active_migration)
|
|
|
|
|
|
|
|
return if next_batch_range.nil?
|
|
|
|
|
|
|
|
active_migration.create_batched_job!(next_batch_range.min, next_batch_range.max)
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_next_batch_range(active_migration)
|
|
|
|
batching_strategy = active_migration.batch_class.new
|
|
|
|
batch_min_value = active_migration.next_min_value
|
|
|
|
|
|
|
|
next_batch_bounds = batching_strategy.next_batch(
|
|
|
|
active_migration.table_name,
|
|
|
|
active_migration.column_name,
|
|
|
|
batch_min_value: batch_min_value,
|
|
|
|
batch_size: active_migration.batch_size)
|
|
|
|
|
|
|
|
return if next_batch_bounds.nil?
|
|
|
|
|
|
|
|
clamped_batch_range(active_migration, next_batch_bounds)
|
|
|
|
end
|
|
|
|
|
|
|
|
def clamped_batch_range(active_migration, next_bounds)
|
|
|
|
min_value, max_value = next_bounds
|
|
|
|
|
|
|
|
return if min_value > active_migration.max_value
|
|
|
|
|
|
|
|
max_value = max_value.clamp(min_value, active_migration.max_value)
|
|
|
|
|
|
|
|
(min_value..max_value)
|
|
|
|
end
|
|
|
|
|
|
|
|
def finish_active_migration(active_migration)
|
|
|
|
active_migration.finished!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|