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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/ci/pipeline_cleanup_ref_worker.rb')
-rw-r--r--app/workers/ci/pipeline_cleanup_ref_worker.rb35
1 files changed, 35 insertions, 0 deletions
diff --git a/app/workers/ci/pipeline_cleanup_ref_worker.rb b/app/workers/ci/pipeline_cleanup_ref_worker.rb
new file mode 100644
index 00000000000..291e1090c18
--- /dev/null
+++ b/app/workers/ci/pipeline_cleanup_ref_worker.rb
@@ -0,0 +1,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