summaryrefslogtreecommitdiff
path: root/app/workers/counters/cleanup_refresh_worker.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-18 19:00:14 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-18 19:00:14 +0000
commit05f0ebba3a2c8ddf39e436f412dc2ab5bf1353b2 (patch)
tree11d0f2a6ec31c7793c184106cedc2ded3d9a2cc5 /app/workers/counters/cleanup_refresh_worker.rb
parentec73467c23693d0db63a797d10194da9e72a74af (diff)
downloadgitlab-ce-05f0ebba3a2c8ddf39e436f412dc2ab5bf1353b2.tar.gz
Add latest changes from gitlab-org/gitlab@15-8-stable-eev15.8.0-rc42
Diffstat (limited to 'app/workers/counters/cleanup_refresh_worker.rb')
-rw-r--r--app/workers/counters/cleanup_refresh_worker.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/app/workers/counters/cleanup_refresh_worker.rb b/app/workers/counters/cleanup_refresh_worker.rb
new file mode 100644
index 00000000000..97e6a56d6e7
--- /dev/null
+++ b/app/workers/counters/cleanup_refresh_worker.rb
@@ -0,0 +1,31 @@
+# frozen_string_literal: true
+
+module Counters
+ class CleanupRefreshWorker
+ include ApplicationWorker
+
+ data_consistency :always
+
+ loggable_arguments 0, 2
+
+ # The counter is owned by several teams depending on the attribute
+ feature_category :not_owned # rubocop:disable Gitlab/AvoidFeatureCategoryNotOwned
+
+ urgency :low
+ deduplicate :until_executing, including_scheduled: true
+
+ idempotent!
+
+ def perform(model_name, model_id, attribute)
+ Gitlab::ApplicationContext.push(feature_category: :build_artifacts) if attribute.to_s == 'build_artifacts_size'
+
+ return unless self.class.const_defined?(model_name)
+
+ model_class = model_name.constantize
+ model = model_class.find_by_id(model_id)
+ return unless model
+
+ Gitlab::Counters::BufferedCounter.new(model, attribute).cleanup_refresh
+ end
+ end
+end