2021-09-04 01:27:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Database
|
|
|
|
module LoadBalancing
|
|
|
|
class SidekiqClientMiddleware
|
2021-11-11 11:23:49 +05:30
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
def call(worker_class, job, _queue, _redis_pool)
|
2021-09-30 23:02:18 +05:30
|
|
|
# Mailers can't be constantized
|
2021-09-04 01:27:46 +05:30
|
|
|
worker_class = worker_class.to_s.safe_constantize
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
if load_balancing_enabled?(worker_class)
|
|
|
|
job['worker_data_consistency'] = worker_class.get_data_consistency
|
2021-11-11 11:23:49 +05:30
|
|
|
set_data_consistency_locations!(job) unless job['wal_locations']
|
2021-09-30 23:02:18 +05:30
|
|
|
else
|
|
|
|
job['worker_data_consistency'] = ::WorkerAttributes::DEFAULT_DATA_CONSISTENCY
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
yield
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
def load_balancing_enabled?(worker_class)
|
|
|
|
worker_class &&
|
|
|
|
worker_class.include?(::ApplicationWorker) &&
|
|
|
|
worker_class.utilizes_load_balancing_capabilities? &&
|
|
|
|
worker_class.get_data_consistency_feature_flag_enabled?
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
def set_data_consistency_locations!(job)
|
2021-11-18 22:05:49 +05:30
|
|
|
locations = {}
|
2021-09-04 01:27:46 +05:30
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
::Gitlab::Database::LoadBalancing.each_load_balancer do |lb|
|
|
|
|
if (location = wal_location_for(lb))
|
|
|
|
locations[lb.name] = location
|
2021-11-11 11:23:49 +05:30
|
|
|
end
|
|
|
|
end
|
2021-11-18 22:05:49 +05:30
|
|
|
|
|
|
|
job['wal_locations'] = locations
|
2021-09-04 01:27:46 +05:30
|
|
|
end
|
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
def wal_location_for(load_balancer)
|
|
|
|
# When only using the primary there's no need for any WAL queries.
|
|
|
|
return if load_balancer.primary_only?
|
|
|
|
|
|
|
|
if ::Gitlab::Database::LoadBalancing::Session.current.use_primary?
|
|
|
|
load_balancer.primary_write_location
|
|
|
|
else
|
|
|
|
load_balancer.host.database_replica_location
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|