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 'lib/gitlab/redis/multi_store.rb')
-rw-r--r--lib/gitlab/redis/multi_store.rb16
1 files changed, 15 insertions, 1 deletions
diff --git a/lib/gitlab/redis/multi_store.rb b/lib/gitlab/redis/multi_store.rb
index 9571e2f92e6..d36ef6b99ee 100644
--- a/lib/gitlab/redis/multi_store.rb
+++ b/lib/gitlab/redis/multi_store.rb
@@ -44,6 +44,7 @@ module Gitlab
hscan_each
mapped_hmget
mget
+ scan
scan_each
scard
sismember
@@ -66,11 +67,14 @@ module Gitlab
mapped_hmset
rpush
sadd
+ sadd?
set
setex
setnx
srem
unlink
+
+ memory
].freeze
PIPELINED_COMMANDS = %i[
@@ -122,7 +126,7 @@ module Gitlab
if use_primary_and_secondary_stores?
pipelined_both(name, *args, **kwargs, &block)
else
- default_store.send(name, *args, **kwargs, &block)
+ send_command(default_store, name, *args, **kwargs, &block)
end
end
end
@@ -289,6 +293,16 @@ module Gitlab
# rubocop:disable GitlabSecurity/PublicSend
def send_command(redis_instance, command_name, *args, **kwargs, &block)
+ # Run wrapped pipeline for each instance individually so that the fan-out is distinct.
+ # If both primary and secondary are Redis Clusters, the slot-node distribution could
+ # be different.
+ #
+ # We ignore args and kwargs since `pipelined` does not accept arguments
+ # See https://github.com/redis/redis-rb/blob/v4.8.0/lib/redis.rb#L164
+ if command_name.to_s == 'pipelined' && redis_instance._client.instance_of?(::Redis::Cluster)
+ return Gitlab::Redis::CrossSlot::Pipeline.new(redis_instance).pipelined(&block)
+ end
+
if block
# Make sure that block is wrapped and executed only on the redis instance that is executing the block
redis_instance.send(command_name, *args, **kwargs) do |*params|