]>
git.saurik.com Git - redis.git/blob - src/redis-trib.rb
7f83f78ef1f0ad24297f8dcbc89c6a8f7180c5ec
6 ClusterHashSlots
= 4096
17 puts
"Invalid node name #{node}"
31 xputs
"Connecting to node #{self}: "
33 @r = Redis
.new(:host => @ost, :port => @port)
37 puts
"Sorry, can't connect to node #{self}"
44 if !info
["cluster_enabled"] || info
["cluster_enabled"].to_i
== 0
45 puts
"Error: Node #{self} is not configured as a cluster node."
51 if !
(@r.cluster("info").split("\r\n").index("cluster_known_nodes:1")) ||
53 puts
"Error: Node #{self} is not empty. Either the node already knows other nodes (check with nodes-info) or contains some key in database 0."
74 @r.cluster("addslots",*new
)
79 slots
= @slots.map
{|k
,v
| k
}.reduce
{|a
,b
|
80 a
= [(a
..a
)] if !a
.is_a
?(Array
)
81 if b
== (a
[-1].last
)+
1
82 a
[-1] = (a
[-1].first
)..b
88 (x
.first
== x
.last
) ? x
.first
.to_s
: "#{x.first}-#{x.last}"
90 "#{self.to_s.ljust(25)} slots:#{slots}"
116 def check_arity(req_args
, num_args
)
117 if ((req_args
> 0 and num_args !
= req_args
) ||
118 (req_args
< 0 and num_args
< req_args
.abs
))
119 puts
"Wrong number of arguments for specified sub command"
125 puts
"Creating cluster"
127 node
= ClusterNode
.new(n
)
133 puts
"Performing hash slots allocation on #{@nodes.length} nodes..."
136 yes_or_die
"Can I set the above configuration?"
138 puts
"** Nodes configuration updated"
139 puts
"** Sending CLUSTER MEET messages to join the cluster"
145 puts
"Check if the cluster looks sane"
149 slots_per_node
= ClusterHashSlots
/@nodes.length
152 first
= i
*slots_per_node
153 last
= first+slots_per_node-1
154 last
= ClusterHashSlots-1
if i
== @nodes.length-1
155 n
.add_slots first
..last
160 def flush_nodes_config
173 # We use a brute force approach to make sure the node will meet
174 # each other, that is, sending CLUSTER MEET messages to all the nodes
175 # about the very same node.
176 # Thanks to gossip this information should propagate across all the
177 # cluster in a matter of seconds.
180 if !first
then first
= n
.info
; next; end # Skip the first node
181 n
.r
.cluster("meet",first
[:host],first
[:port])
186 print
"#{msg} (type 'yes' to accept): "
188 if !
(STDIN.gets
.chomp
.downcase
== "yes")
196 "create" => ["create_cluster", -2, "host1:port host2:port ... hostN:port"],
197 "check" => ["check_cluster", 1, "host:port"]
202 puts
"Usage: redis-trib <command> <arguments ...>"
205 puts
" #{k.ljust(20)} #{v[2]}"
212 cmd_spec
= COMMANDS
[ARGV[0].downcase
]
214 puts
"Unknown redis-trib subcommand '#{ARGV[0]}'"
217 rt
.check_arity(cmd_spec
[1],ARGV.length
)