2020-07-30 17:09:35 -04:00
|
|
|
# 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-07-21 08:09:35 -04:00
|
|
|
data_consistency :always
|
|
|
|
|
2021-04-30 14:10:09 -04:00
|
|
|
sidekiq_options retry: 3
|
|
|
|
|
2020-07-30 17:09:35 -04:00
|
|
|
feature_category_not_owned!
|
2021-05-03 05:10:02 -04:00
|
|
|
tags :exclude_from_kubernetes
|
2020-07-30 17:09:35 -04:00
|
|
|
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
|