mirror of
https://github.com/fluencelabs/redis
synced 2025-04-03 00:01:04 +00:00
Merge pull request #1628 from mattsta/fix-trib-create
Cluster: Fix trib create when masters==replicas
This commit is contained in:
commit
a006fcb8a7
@ -554,14 +554,28 @@ class RedisTrib
|
|||||||
# We try to split the replicas among all the IPs with spare nodes
|
# We try to split the replicas among all the IPs with spare nodes
|
||||||
# trying to avoid the host where the master is running, if possible.
|
# trying to avoid the host where the master is running, if possible.
|
||||||
#
|
#
|
||||||
# Note that we loop two times, the first with spare_loop set to false,
|
# Note we loop two times. The first loop assigns the requested
|
||||||
# the second with the var set to true. The second loop changes the
|
# number of replicas to each master. The second loop assigns any
|
||||||
# while condition so to assign remaining slaves.
|
# remaining instances as extra replicas to masters. Some masters
|
||||||
[false,true].each{|spare_loop|
|
# may end up with more than their requested number of replicas, but
|
||||||
|
# all nodes will be used.
|
||||||
|
assignment_verbose = false
|
||||||
|
|
||||||
|
[:requested,:unused].each{|assign|
|
||||||
masters.each{|m|
|
masters.each{|m|
|
||||||
i = 0
|
assigned_replicas = 0
|
||||||
while (!spare_loop && i < @replicas) || \
|
while assigned_replicas < @replicas
|
||||||
(spare_loop && nodes_count > 0)
|
break if nodes_count == 0
|
||||||
|
if assignment_verbose
|
||||||
|
if assign == :requested
|
||||||
|
puts "Requesting total of #{@replicas} replicas " \
|
||||||
|
"(#{assigned_replicas} replicas assigned " \
|
||||||
|
"so far with #{nodes_count} total remaining)."
|
||||||
|
elsif assign == :unused
|
||||||
|
puts "Assigning extra instance to replication " \
|
||||||
|
"role too (#{nodes_count} remaining)."
|
||||||
|
end
|
||||||
|
end
|
||||||
ips.each{|ip,nodes_list|
|
ips.each{|ip,nodes_list|
|
||||||
next if nodes_list.length == 0
|
next if nodes_list.length == 0
|
||||||
# Skip instances with the same IP as the master if we
|
# Skip instances with the same IP as the master if we
|
||||||
@ -570,7 +584,7 @@ class RedisTrib
|
|||||||
slave = nodes_list.shift
|
slave = nodes_list.shift
|
||||||
slave.set_as_replica(m.info[:name])
|
slave.set_as_replica(m.info[:name])
|
||||||
nodes_count -= 1
|
nodes_count -= 1
|
||||||
i += 1
|
assigned_replicas += 1
|
||||||
puts "Adding replica #{slave} to #{m}"
|
puts "Adding replica #{slave} to #{m}"
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user