debian-mirror-gitlab/app/services/ci/pipeline_processing/atomic_processing_service.rb

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

120 lines
3.5 KiB
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module Ci
module PipelineProcessing
class AtomicProcessingService
include Gitlab::Utils::StrongMemoize
include ExclusiveLeaseGuard
attr_reader :pipeline
DEFAULT_LEASE_TIMEOUT = 1.minute
BATCH_SIZE = 20
def initialize(pipeline)
@pipeline = pipeline
@collection = AtomicProcessingService::StatusCollection.new(pipeline)
end
def execute
return unless pipeline.needs_processing?
success = try_obtain_lease { process! }
# re-schedule if we need further processing
if success && pipeline.needs_processing?
PipelineProcessWorker.perform_async(pipeline.id)
end
success
end
private
def process!
update_stages!
update_pipeline!
update_statuses_processed!
2022-03-02 08:16:31 +05:30
Ci::ExpirePipelineCacheService.new.execute(pipeline)
2022-01-26 12:08:38 +05:30
2020-03-13 15:44:24 +05:30
true
end
def update_stages!
2023-04-23 21:23:45 +05:30
pipeline.stages.ordered.each { |stage| update_stage!(stage) }
2020-03-13 15:44:24 +05:30
end
def update_stage!(stage)
# Update processables for a given stage in bulk/slices
2023-04-23 21:23:45 +05:30
@collection
2023-05-27 22:25:52 +05:30
.created_processable_ids_in_stage(stage.position)
2023-04-23 21:23:45 +05:30
.in_groups_of(BATCH_SIZE, false) { |ids| update_processables!(ids) }
2020-03-13 15:44:24 +05:30
2023-05-27 22:25:52 +05:30
status = @collection.status_of_stage(stage.position)
2020-03-13 15:44:24 +05:30
stage.set_status(status)
end
def update_processables!(ids)
2021-04-17 20:07:23 +05:30
created_processables = pipeline.processables.id_in(ids)
2020-03-13 15:44:24 +05:30
.with_project_preload
.created
.latest
.ordered_by_stage
.select_with_aggregated_needs(project)
2023-04-23 21:23:45 +05:30
created_processables.each { |processable| update_processable!(processable) }
2020-03-13 15:44:24 +05:30
end
def update_pipeline!
pipeline.set_status(@collection.status_of_all)
end
def update_statuses_processed!
processing = @collection.processing_processables
processing.each_slice(BATCH_SIZE) do |slice|
pipeline.statuses.match_id_and_lock_version(slice)
.update_as_processed!
end
end
def update_processable!(processable)
2023-05-27 22:25:52 +05:30
previous_status = status_of_previous_processables(processable)
# We do not continue to process the processable if the previous status is not completed
return unless Ci::HasStatus::COMPLETED_STATUSES.include?(previous_status)
2020-03-13 15:44:24 +05:30
2021-04-17 20:07:23 +05:30
Gitlab::OptimisticLocking.retry_lock(processable, name: 'atomic_processing_update_processable') do |subject|
2020-03-13 15:44:24 +05:30
Ci::ProcessBuildService.new(project, subject.user)
2023-05-27 22:25:52 +05:30
.execute(subject, previous_status)
2020-03-13 15:44:24 +05:30
# update internal representation of status
2023-05-27 22:25:52 +05:30
# to make the status change of processable to be taken into account during further processing
@collection.set_processable_status(processable.id, processable.status, processable.lock_version)
2020-03-13 15:44:24 +05:30
end
end
2023-05-27 22:25:52 +05:30
def status_of_previous_processables(processable)
2020-04-22 19:07:51 +05:30
if processable.scheduling_type_dag?
2020-03-13 15:44:24 +05:30
# Processable uses DAG, get status of all dependent needs
2023-05-27 22:25:52 +05:30
@collection.status_of_processables(processable.aggregated_needs_names.to_a, dag: true)
2020-03-13 15:44:24 +05:30
else
# Processable uses Stages, get status of prior stage
2023-05-27 22:25:52 +05:30
@collection.status_of_processables_prior_to_stage(processable.stage_idx.to_i)
2020-03-13 15:44:24 +05:30
end
end
def project
pipeline.project
end
def lease_key
"#{super}::pipeline_id:#{pipeline.id}"
end
def lease_timeout
DEFAULT_LEASE_TIMEOUT
end
end
end
end