]>
git.saurik.com Git - redis.git/blob - src/redis-trib.rb
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}"
107 def check_arity(req_args
, num_args
)
108 if ((req_args
> 0 and num_args !
= req_args
) ||
109 (req_args
< 0 and num_args
< req_args
.abs
))
110 puts
"Wrong number of arguments for specified sub command"
116 puts
"Creating cluster"
118 node
= ClusterNode
.new(n
)
124 puts
"Performing hash slots allocation on #{@nodes.length} nodes..."
127 yes_or_die
"Can I set the above configuration?"
129 puts
"** Nodes configuration updated"
130 puts
"Sending CLUSTER MEET messages to join the cluster"
135 slots_per_node
= ClusterHashSlots
/@nodes.length
138 first
= i
*slots_per_node
139 last
= first+slots_per_node-1
140 last
= ClusterHashSlots-1
if i
== @nodes.length-1
141 n
.add_slots first
..last
146 def flush_nodes_config
162 print
"#{msg} (type 'yes' to accept): "
164 if !
(STDIN.gets
.chomp
.downcase
== "yes")
172 "create-cluster" => ["create_cluster", -2]
177 puts
"Usage: redis-trib <command> <arguments ...>"
182 cmd_spec
= COMMANDS
[ARGV[0].downcase
]
184 puts
"Unknown redis-trib subcommand '#{ARGV[0]}'"
187 rt
.check_arity(cmd_spec
[1],ARGV.length
)