Commit 1e94f6e8 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'fix_populate_latest_pipeline_ids_background_migration' into 'master'

Fix populate latest pipeline ids background migration

See merge request gitlab-org/gitlab!65280
parents 1d5d1fe9 f2f00bac
# frozen_string_literal: true
class ScheduleLatestPipelineIdPopulation < ActiveRecord::Migration[6.1]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
DELAY_INTERVAL = 2.minutes.to_i
BATCH_SIZE = 100
MIGRATION = 'PopulateLatestPipelineIds'
disable_ddl_transaction!
def up
return unless Gitlab.ee?
queue_background_migration_jobs_by_range_at_intervals(
Gitlab::BackgroundMigration::PopulateLatestPipelineIds::ProjectSetting.has_vulnerabilities_without_latest_pipeline_set,
MIGRATION,
DELAY_INTERVAL,
batch_size: BATCH_SIZE,
primary_column_name: 'project_id'
)
# no-op: This migration has been marked as no-op and replaced by
# `ReScheduleLatestPipelineIdPopulation` as we've found some problems.
# For more information: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/65280
end
def down
......
# frozen_string_literal: true
class ReScheduleLatestPipelineIdPopulation < ActiveRecord::Migration[6.1]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
DELAY_INTERVAL = 2.minutes.to_i
BATCH_SIZE = 100
MIGRATION = 'PopulateLatestPipelineIds'
disable_ddl_transaction!
def up
return unless Gitlab.ee?
queue_background_migration_jobs_by_range_at_intervals(
Gitlab::BackgroundMigration::PopulateLatestPipelineIds::ProjectSetting.has_vulnerabilities_without_latest_pipeline_set,
MIGRATION,
DELAY_INTERVAL,
batch_size: BATCH_SIZE,
primary_column_name: 'project_id'
)
end
def down
# no-op
end
end
ed0daff7120cbdba2f0e9ca1f2e40c11114bb2c7db4543903d16891ffbbba3f8
\ No newline at end of file
......@@ -135,6 +135,10 @@ module EE
return unless latest_pipeline_id
[id, DEFAULT_LETTER_GRADE, latest_pipeline_id, quoted_time, quoted_time].join(', ').then { |s| "(#{s})" }
rescue StandardError => e
::Gitlab::ErrorTracking.track_and_raise_for_dev_exception(e)
nil
end
private
......@@ -199,7 +203,7 @@ module EE
def root_ref
raw_repository&.root_ref
rescue Gitlab::Git::Repository::NoRepository
rescue ::Gitlab::Git::Repository::NoRepository
end
def empty?
......
......@@ -31,6 +31,8 @@ RSpec.describe Gitlab::BackgroundMigration::PopulateLatestPipelineIds do
let!(:project_2) { projects.create!(namespace_id: namespace.id, name: 'Foo 2') }
let!(:project_3) { projects.create!(namespace_id: namespace.id, name: 'Foo 3') }
let!(:project_4) { projects.create!(namespace_id: namespace.id, name: 'Foo 4') }
let!(:project_5) { projects.create!(namespace_id: namespace.id, name: 'Foo 5', path: 'unknown-path-to-repository') }
let!(:project_6) { projects.create!(namespace_id: namespace.id, name: 'Foo 6') }
let!(:project_1_pipeline) { pipelines.create!(project_id: project_1.id, ref: 'master', sha: 'adf43c3a', status: 'success') }
let!(:project_1_latest_pipeline) { pipelines.create!(project_id: project_1.id, ref: 'master', sha: 'adf43c3a', status: 'failed') }
......@@ -51,6 +53,8 @@ RSpec.describe Gitlab::BackgroundMigration::PopulateLatestPipelineIds do
project_settings.create!(project_id: project_2.id, has_vulnerabilities: true)
project_settings.create!(project_id: project_3.id)
project_settings.create!(project_id: project_4.id, has_vulnerabilities: true)
project_settings.create!(project_id: project_5.id, has_vulnerabilities: true)
project_settings.create!(project_id: project_6.id, has_vulnerabilities: true)
# Create security builds
create_security_build_for(project_1_pipeline, file_type: file_types[:sast])
......@@ -63,7 +67,20 @@ RSpec.describe Gitlab::BackgroundMigration::PopulateLatestPipelineIds do
end
describe '#perform' do
subject(:populate_latest_pipeline_ids) { migrator.perform(project_1.id, project_4.id) }
subject(:populate_latest_pipeline_ids) { migrator.perform(project_1.id, project_6.id) }
before do
allow(Gitlab::ErrorTracking).to receive(:track_and_raise_for_dev_exception)
# Raise a RuntimeError while retreiving the `pipeline_with_reports` for the `project_6`
allow_next_found_instance_of(described_class::Project) do |project_instance|
original_pipeline_with_reports = project_instance.method(:pipeline_with_reports)
allow(project_instance).to receive(:pipeline_with_reports) do
project_instance.id == project_6.id ? raise("Foo") : original_pipeline_with_reports.call
end
end
end
it 'sets the latest_pipeline_id' do
expect { populate_latest_pipeline_ids }.to change { project_4_stats.reload.latest_pipeline_id }.from(nil).to(project_4_pipeline.id)
......@@ -71,6 +88,8 @@ RSpec.describe Gitlab::BackgroundMigration::PopulateLatestPipelineIds do
.and change { vulnerability_statistics.find_by(project_id: project_1.id) }.from(nil)
.and change { vulnerability_statistics.find_by(project_id: project_1.id)&.latest_pipeline_id }.from(nil).to(project_1_latest_pipeline.id)
.and not_change { project_2_stats.reload.latest_pipeline_id }.from(project_2_pipeline.id)
expect(Gitlab::ErrorTracking).to have_received(:track_and_raise_for_dev_exception).once
end
end
......
......@@ -3,7 +3,7 @@
require 'spec_helper'
require_migration!
RSpec.describe ScheduleLatestPipelineIdPopulation do
RSpec.describe ReScheduleLatestPipelineIdPopulation do
let(:namespaces) { table(:namespaces) }
let(:pipelines) { table(:ci_pipelines) }
let(:projects) { table(:projects) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment