]> git.saurik.com Git - redis.git/blob - src/redis-trib.rb
7f83f78ef1f0ad24297f8dcbc89c6a8f7180c5ec
[redis.git] / src / redis-trib.rb
1 #!/usr/bin/env ruby
2
3 require 'rubygems'
4 require 'redis'
5
6 ClusterHashSlots = 4096
7
8 def xputs(s)
9 printf s
10 STDOUT.flush
11 end
12
13 class ClusterNode
14 def initialize(addr)
15 s = addr.split(":")
16 if s.length != 2
17 puts "Invalid node name #{node}"
18 exit 1
19 end
20 @host = s[0]
21 @port = s[1]
22 @slots = {}
23 @dirty = false
24 end
25
26 def to_s
27 "#{@host}:#{@port}"
28 end
29
30 def connect
31 xputs "Connecting to node #{self}: "
32 begin
33 @r = Redis.new(:host => @ost, :port => @port)
34 @r.ping
35 rescue
36 puts "ERROR"
37 puts "Sorry, can't connect to node #{self}"
38 end
39 puts "OK"
40 end
41
42 def assert_cluster
43 info = @r.info
44 if !info["cluster_enabled"] || info["cluster_enabled"].to_i == 0
45 puts "Error: Node #{self} is not configured as a cluster node."
46 exit 1
47 end
48 end
49
50 def assert_empty
51 if !(@r.cluster("info").split("\r\n").index("cluster_known_nodes:1")) ||
52 (@r.info['db0'])
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."
54 exit 1
55 end
56 end
57
58 def add_slots(slots)
59 slots.each{|s|
60 @slots[s] = :new
61 }
62 @dirty = true
63 end
64
65 def flush_node_config
66 return if !@dirty
67 new = []
68 @slots.each{|s,val|
69 if val == :new
70 new << s
71 @slots[s] = true
72 end
73 }
74 @r.cluster("addslots",*new)
75 @dirty = false
76 end
77
78 def info_string
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
83 a
84 else
85 a << (b..b)
86 end
87 }.map{|x|
88 (x.first == x.last) ? x.first.to_s : "#{x.first}-#{x.last}"
89 }.join(",")
90 "#{self.to_s.ljust(25)} slots:#{slots}"
91 end
92
93 def info
94 {
95 :host => @host,
96 :port => @port,
97 :slots => @slots,
98 :dirty => @dirty
99 }
100 end
101
102 def is_dirty?
103 @dirty
104 end
105
106 def r
107 @r
108 end
109 end
110
111 class RedisTrib
112 def initialize
113 @nodes = []
114 end
115
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"
120 exit 1
121 end
122 end
123
124 def create_cluster
125 puts "Creating cluster"
126 ARGV[1..-1].each{|n|
127 node = ClusterNode.new(n)
128 node.connect
129 node.assert_cluster
130 node.assert_empty
131 @nodes << node
132 }
133 puts "Performing hash slots allocation on #{@nodes.length} nodes..."
134 alloc_slots
135 show_nodes
136 yes_or_die "Can I set the above configuration?"
137 flush_nodes_config
138 puts "** Nodes configuration updated"
139 puts "** Sending CLUSTER MEET messages to join the cluster"
140 join_cluster
141 check_cluster
142 end
143
144 def check_cluster
145 puts "Check if the cluster looks sane"
146 end
147
148 def alloc_slots
149 slots_per_node = ClusterHashSlots/@nodes.length
150 i = 0
151 @nodes.each{|n|
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
156 i += 1
157 }
158 end
159
160 def flush_nodes_config
161 @nodes.each{|n|
162 n.flush_node_config
163 }
164 end
165
166 def show_nodes
167 @nodes.each{|n|
168 puts n.info_string
169 }
170 end
171
172 def join_cluster
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.
178 first = false
179 @nodes.each{|n|
180 if !first then first = n.info; next; end # Skip the first node
181 n.r.cluster("meet",first[:host],first[:port])
182 }
183 end
184
185 def yes_or_die(msg)
186 print "#{msg} (type 'yes' to accept): "
187 STDOUT.flush
188 if !(STDIN.gets.chomp.downcase == "yes")
189 puts "Aborting..."
190 exit 1
191 end
192 end
193 end
194
195 COMMANDS={
196 "create" => ["create_cluster", -2, "host1:port host2:port ... hostN:port"],
197 "check" => ["check_cluster", 1, "host:port"]
198 }
199
200 # Sanity check
201 if ARGV.length == 0
202 puts "Usage: redis-trib <command> <arguments ...>"
203 puts
204 COMMANDS.each{|k,v|
205 puts " #{k.ljust(20)} #{v[2]}"
206 }
207 puts
208 exit 1
209 end
210
211 rt = RedisTrib.new
212 cmd_spec = COMMANDS[ARGV[0].downcase]
213 if !cmd_spec
214 puts "Unknown redis-trib subcommand '#{ARGV[0]}'"
215 exit 1
216 end
217 rt.check_arity(cmd_spec[1],ARGV.length)
218
219 # Dispatch
220 rt.send(cmd_spec[0])