debian-mirror-gitlab/lib/gitlab/background_migration/nullify_orphan_runner_id_on_ci_builds.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.4 KiB
Ruby
Raw Normal View History

2022-05-07 20:08:51 +05:30
# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# A job to nullify orphan runner_id on ci_builds table
class NullifyOrphanRunnerIdOnCiBuilds
include Gitlab::Database::DynamicModelHelpers
def perform(start_id, end_id, batch_table, batch_column, sub_batch_size, pause_ms)
pause_ms = 0 if pause_ms < 0
batch_relation = relation_scoped_to_range(batch_table, batch_column, start_id, end_id)
2022-07-23 23:45:48 +05:30
batch_relation.each_batch(column: batch_column, of: sub_batch_size) do |sub_batch|
2022-05-07 20:08:51 +05:30
batch_metrics.time_operation(:update_all) do
2022-07-23 23:45:48 +05:30
filtered_sub_batch(sub_batch).update_all(runner_id: nil)
2022-05-07 20:08:51 +05:30
end
sleep(pause_ms * 0.001)
end
end
def batch_metrics
@batch_metrics ||= Gitlab::Database::BackgroundMigration::BatchMetrics.new
end
private
def connection
2022-07-16 23:28:13 +05:30
::Ci::ApplicationRecord.connection
2022-05-07 20:08:51 +05:30
end
def relation_scoped_to_range(source_table, source_key_column, start_id, stop_id)
define_batchable_model(source_table, connection: connection)
2022-07-23 23:45:48 +05:30
.where(source_key_column => start_id..stop_id)
end
def filtered_sub_batch(sub_batch)
sub_batch
2022-05-07 20:08:51 +05:30
.joins('LEFT OUTER JOIN ci_runners ON ci_runners.id = ci_builds.runner_id')
.where('ci_builds.runner_id IS NOT NULL AND ci_runners.id IS NULL')
end
end
end
end