Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipeline_cleanup_ref_worker.rb « ci « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 291e1090c18fa81a3469cc09fac78275b8364e96 (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
# frozen_string_literal: true

module Ci
  class PipelineCleanupRefWorker
    include ApplicationWorker
    include Projects::RemoveRefs

    sidekiq_options retry: 3
    include PipelineQueue

    idempotent!
    deduplicate :until_executed, if_deduplicated: :reschedule_once, ttl: 1.minute
    data_consistency :always # rubocop:disable SidekiqLoadBalancing/WorkerDataConsistency

    urgency :low

    # Even though this worker is de-duplicated we need to acquire lock
    # on a project to avoid running many concurrent refs removals
    #
    # TODO: Once underlying fix is done we can remove `in_lock`
    #
    # Related to:
    # - https://gitlab.com/gitlab-org/gitaly/-/issues/5368
    # - https://gitlab.com/gitlab-org/gitaly/-/issues/5369
    def perform(pipeline_id)
      pipeline = Ci::Pipeline.find_by_id(pipeline_id)
      return unless pipeline
      return unless pipeline.persistent_ref.should_delete?

      serialized_remove_refs(pipeline.project_id) do
        pipeline.reset.persistent_ref.delete
      end
    end
  end
end