debian-mirror-gitlab/app/workers/flush_counter_increments_worker.rb

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

35 lines
1,021 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
# Invoked by CounterAttribute concern when incrementing counter
# attributes. The method `flush_increments_to_database!` that
# this worker uses is itself idempotent as it runs with exclusive
# lease to ensure that only one instance at the time can flush
# increments from Redis to the database.
class FlushCounterIncrementsWorker
include ApplicationWorker
2021-10-27 15:23:28 +05:30
data_consistency :always
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2022-10-11 01:57:18 +05:30
loggable_arguments 0, 2
2021-06-08 01:23:25 +05:30
2022-06-21 17:19:12 +05:30
# The increments in `ProjectStatistics` are owned by several teams depending
# on the counter
feature_category :not_owned # rubocop:disable Gitlab/AvoidFeatureCategoryNotOwned
2020-10-24 23:57:45 +05:30
urgency :low
deduplicate :until_executing, including_scheduled: true
idempotent!
def perform(model_name, model_id, attribute)
return unless self.class.const_defined?(model_name)
model_class = model_name.constantize
model = model_class.find_by_id(model_id)
return unless model
model.flush_increments_to_database!(attribute)
end
end