summaryrefslogtreecommitdiff
path: root/app/services/ci/process_pipeline_service.rb
blob: fb26d5d3356140d15614f6f6035dd3a2d9f11101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# frozen_string_literal: true

module Ci
  class ProcessPipelineService
    attr_reader :pipeline

    def initialize(pipeline)
      @pipeline = pipeline
    end

    def execute
      increment_processing_counter

      update_retried

      Ci::PipelineProcessing::AtomicProcessingService
        .new(pipeline)
        .execute
    end

    def metrics
      @metrics ||= ::Gitlab::Ci::Pipeline::Metrics
    end

    private

    # This method is for compatibility and data consistency and should be removed with 9.3 version of GitLab
    # This replicates what is db/post_migrate/20170416103934_upate_retried_for_ci_build.rb
    # and ensures that functionality will not be broken before migration is run
    # this updates only when there are data that needs to be updated, there are two groups with no retried flag
    # rubocop: disable CodeReuse/ActiveRecord
    def update_retried
      return if Feature.enabled?(:ci_remove_update_retried_from_process_pipeline, pipeline.project, default_enabled: :yaml)

      # find the latest builds for each name
      latest_statuses = pipeline.latest_statuses
        .group(:name)
        .having('count(*) > 1')
        .pluck(Arel.sql('MAX(id)'), 'name')

      # mark builds that are retried
      if latest_statuses.any?
        updated_count = pipeline.latest_statuses
                          .where(name: latest_statuses.map(&:second))
                          .where.not(id: latest_statuses.map(&:first))
                          .update_all(retried: true)

        # This counter is temporary. It will be used to check whether if we still use this method or not
        # after setting correct value of `GenericCommitStatus#retried`.
        # More info: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/50465#note_491657115
        if updated_count > 0
          Gitlab::AppJsonLogger.info(event: 'update_retried_is_used',
                                     project_id: pipeline.project.id,
                                     pipeline_id: pipeline.id)

          metrics.legacy_update_jobs_counter.increment
        end
      end
    end
    # rubocop: enable CodeReuse/ActiveRecord

    def increment_processing_counter
      metrics.pipeline_processing_events_counter.increment
    end
  end
end