2
0

cluster.tcl 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. # Tcl redis cluster client as a wrapper of redis.rb.
  2. # Copyright (C) 2014 Salvatore Sanfilippo
  3. # Released under the BSD license like Redis itself
  4. #
  5. # Example usage:
  6. #
  7. # set c [redis_cluster 127.0.0.1 6379 127.0.0.1 6380]
  8. # $c set foo
  9. # $c get foo
  10. # $c close
  11. package require Tcl 8.5
  12. package provide redis_cluster 0.1
  13. namespace eval redis_cluster {}
  14. set ::redis_cluster::id 0
  15. array set ::redis_cluster::startup_nodes {}
  16. array set ::redis_cluster::nodes {}
  17. array set ::redis_cluster::slots {}
  18. # List of "plain" commands, which are commands where the sole key is always
  19. # the first argument.
  20. set ::redis_cluster::plain_commands {
  21. get set setnx setex psetex append strlen exists setbit getbit
  22. setrange getrange substr incr decr rpush lpush rpushx lpushx
  23. linsert rpop lpop brpop llen lindex lset lrange ltrim lrem
  24. sadd srem sismember scard spop srandmember smembers sscan zadd
  25. zincrby zrem zremrangebyscore zremrangebyrank zremrangebylex zrange
  26. zrangebyscore zrevrangebyscore zrangebylex zrevrangebylex zcount
  27. zlexcount zrevrange zcard zscore zrank zrevrank zscan hset hsetnx
  28. hget hmset hmget hincrby hincrbyfloat hdel hlen hkeys hvals
  29. hgetall hexists hscan incrby decrby incrbyfloat getset move
  30. expire expireat pexpire pexpireat type ttl pttl persist restore
  31. dump bitcount bitpos pfadd pfcount
  32. }
  33. proc redis_cluster {nodes} {
  34. set id [incr ::redis_cluster::id]
  35. set ::redis_cluster::startup_nodes($id) $nodes
  36. set ::redis_cluster::nodes($id) {}
  37. set ::redis_cluster::slots($id) {}
  38. set handle [interp alias {} ::redis_cluster::instance$id {} ::redis_cluster::__dispatch__ $id]
  39. $handle refresh_nodes_map
  40. return $handle
  41. }
  42. # Totally reset the slots / nodes state for the client, calls
  43. # CLUSTER NODES in the first startup node available, populates the
  44. # list of nodes ::redis_cluster::nodes($id) with an hash mapping node
  45. # ip:port to a representation of the node (another hash), and finally
  46. # maps ::redis_cluster::slots($id) with an hash mapping slot numbers
  47. # to node IDs.
  48. #
  49. # This function is called when a new Redis Cluster client is initialized
  50. # and every time we get a -MOVED redirection error.
  51. proc ::redis_cluster::__method__refresh_nodes_map {id} {
  52. # Contact the first responding startup node.
  53. set idx 0; # Index of the node that will respond.
  54. set errmsg {}
  55. foreach start_node $::redis_cluster::startup_nodes($id) {
  56. set ip_port [lindex [split $start_node @] 0]
  57. lassign [split $ip_port :] start_host start_port
  58. if {[catch {
  59. set r {}
  60. set r [redis $start_host $start_port]
  61. set nodes_descr [$r cluster nodes]
  62. $r close
  63. } e]} {
  64. if {$r ne {}} {catch {$r close}}
  65. incr idx
  66. if {[string length $errmsg] < 200} {
  67. append errmsg " $ip_port: $e"
  68. }
  69. continue ; # Try next.
  70. } else {
  71. break; # Good node found.
  72. }
  73. }
  74. if {$idx == [llength $::redis_cluster::startup_nodes($id)]} {
  75. error "No good startup node found. $errmsg"
  76. }
  77. # Put the node that responded as first in the list if it is not
  78. # already the first.
  79. if {$idx != 0} {
  80. set l $::redis_cluster::startup_nodes($id)
  81. set left [lrange $l 0 [expr {$idx-1}]]
  82. set right [lrange $l [expr {$idx+1}] end]
  83. set l [concat [lindex $l $idx] $left $right]
  84. set ::redis_cluster::startup_nodes($id) $l
  85. }
  86. # Parse CLUSTER NODES output to populate the nodes description.
  87. set nodes {} ; # addr -> node description hash.
  88. foreach line [split $nodes_descr "\n"] {
  89. set line [string trim $line]
  90. if {$line eq {}} continue
  91. set args [split $line " "]
  92. lassign $args nodeid addr flags slaveof pingsent pongrecv configepoch linkstate
  93. set slots [lrange $args 8 end]
  94. set addr [lindex [split $addr @] 0]
  95. if {$addr eq {:0}} {
  96. set addr $start_host:$start_port
  97. }
  98. lassign [split $addr :] host port
  99. # Connect to the node
  100. set link {}
  101. catch {set link [redis $host $port]}
  102. # Build this node description as an hash.
  103. set node [dict create \
  104. id $nodeid \
  105. addr $addr \
  106. host $host \
  107. port $port \
  108. flags $flags \
  109. slaveof $slaveof \
  110. slots $slots \
  111. link $link \
  112. ]
  113. dict set nodes $addr $node
  114. lappend ::redis_cluster::startup_nodes($id) $addr
  115. }
  116. # Close all the existing links in the old nodes map, and set the new
  117. # map as current.
  118. foreach n $::redis_cluster::nodes($id) {
  119. catch {
  120. [dict get $n link] close
  121. }
  122. }
  123. set ::redis_cluster::nodes($id) $nodes
  124. # Populates the slots -> nodes map.
  125. dict for {addr node} $nodes {
  126. foreach slotrange [dict get $node slots] {
  127. lassign [split $slotrange -] start end
  128. if {$end == {}} {set end $start}
  129. for {set j $start} {$j <= $end} {incr j} {
  130. dict set ::redis_cluster::slots($id) $j $addr
  131. }
  132. }
  133. }
  134. # Only retain unique entries in the startup nodes list
  135. set ::redis_cluster::startup_nodes($id) [lsort -unique $::redis_cluster::startup_nodes($id)]
  136. }
  137. # Free a redis_cluster handle.
  138. proc ::redis_cluster::__method__close {id} {
  139. catch {
  140. set nodes $::redis_cluster::nodes($id)
  141. dict for {addr node} $nodes {
  142. catch {
  143. [dict get $node link] close
  144. }
  145. }
  146. }
  147. catch {unset ::redis_cluster::startup_nodes($id)}
  148. catch {unset ::redis_cluster::nodes($id)}
  149. catch {unset ::redis_cluster::slots($id)}
  150. catch {interp alias {} ::redis_cluster::instance$id {}}
  151. }
  152. proc ::redis_cluster::__dispatch__ {id method args} {
  153. if {[info command ::redis_cluster::__method__$method] eq {}} {
  154. # Get the keys from the command.
  155. set keys [::redis_cluster::get_keys_from_command $method $args]
  156. if {$keys eq {}} {
  157. error "Redis command '$method' is not supported by redis_cluster."
  158. }
  159. # Resolve the keys in the corresponding hash slot they hash to.
  160. set slot [::redis_cluster::get_slot_from_keys $keys]
  161. if {$slot eq {}} {
  162. error "Invalid command: multiple keys not hashing to the same slot."
  163. }
  164. # Get the node mapped to this slot.
  165. set node_addr [dict get $::redis_cluster::slots($id) $slot]
  166. if {$node_addr eq {}} {
  167. error "No mapped node for slot $slot."
  168. }
  169. # Execute the command in the node we think is the slot owner.
  170. set retry 100
  171. while {[incr retry -1]} {
  172. if {$retry < 5} {after 100}
  173. set node [dict get $::redis_cluster::nodes($id) $node_addr]
  174. set link [dict get $node link]
  175. if {[catch {$link $method {*}$args} e]} {
  176. if {$link eq {} || \
  177. [string range $e 0 4] eq {MOVED} || \
  178. [string range $e 0 2] eq {I/O} \
  179. } {
  180. # MOVED redirection.
  181. ::redis_cluster::__method__refresh_nodes_map $id
  182. set node_addr [dict get $::redis_cluster::slots($id) $slot]
  183. continue
  184. } elseif {[string range $e 0 2] eq {ASK}} {
  185. # ASK redirection.
  186. set node_addr [lindex $e 2]
  187. continue
  188. } else {
  189. # Non redirecting error.
  190. error $e $::errorInfo $::errorCode
  191. }
  192. } else {
  193. # OK query went fine
  194. return $e
  195. }
  196. }
  197. error "Too many redirections or failures contacting Redis Cluster."
  198. } else {
  199. uplevel 1 [list ::redis_cluster::__method__$method $id] $args
  200. }
  201. }
  202. proc ::redis_cluster::get_keys_from_command {cmd argv} {
  203. set cmd [string tolower $cmd]
  204. # Most Redis commands get just one key as first argument.
  205. if {[lsearch -exact $::redis_cluster::plain_commands $cmd] != -1} {
  206. return [list [lindex $argv 0]]
  207. }
  208. # Special handling for other commands
  209. switch -exact $cmd {
  210. mget {return $argv}
  211. eval {return [lrange $argv 2 1+[lindex $argv 1]]}
  212. evalsha {return [lrange $argv 2 1+[lindex $argv 1]]}
  213. }
  214. # All the remaining commands are not handled.
  215. return {}
  216. }
  217. # Returns the CRC16 of the specified string.
  218. # The CRC parameters are described in the Redis Cluster specification.
  219. set ::redis_cluster::XMODEMCRC16Lookup {
  220. 0x0000 0x1021 0x2042 0x3063 0x4084 0x50a5 0x60c6 0x70e7
  221. 0x8108 0x9129 0xa14a 0xb16b 0xc18c 0xd1ad 0xe1ce 0xf1ef
  222. 0x1231 0x0210 0x3273 0x2252 0x52b5 0x4294 0x72f7 0x62d6
  223. 0x9339 0x8318 0xb37b 0xa35a 0xd3bd 0xc39c 0xf3ff 0xe3de
  224. 0x2462 0x3443 0x0420 0x1401 0x64e6 0x74c7 0x44a4 0x5485
  225. 0xa56a 0xb54b 0x8528 0x9509 0xe5ee 0xf5cf 0xc5ac 0xd58d
  226. 0x3653 0x2672 0x1611 0x0630 0x76d7 0x66f6 0x5695 0x46b4
  227. 0xb75b 0xa77a 0x9719 0x8738 0xf7df 0xe7fe 0xd79d 0xc7bc
  228. 0x48c4 0x58e5 0x6886 0x78a7 0x0840 0x1861 0x2802 0x3823
  229. 0xc9cc 0xd9ed 0xe98e 0xf9af 0x8948 0x9969 0xa90a 0xb92b
  230. 0x5af5 0x4ad4 0x7ab7 0x6a96 0x1a71 0x0a50 0x3a33 0x2a12
  231. 0xdbfd 0xcbdc 0xfbbf 0xeb9e 0x9b79 0x8b58 0xbb3b 0xab1a
  232. 0x6ca6 0x7c87 0x4ce4 0x5cc5 0x2c22 0x3c03 0x0c60 0x1c41
  233. 0xedae 0xfd8f 0xcdec 0xddcd 0xad2a 0xbd0b 0x8d68 0x9d49
  234. 0x7e97 0x6eb6 0x5ed5 0x4ef4 0x3e13 0x2e32 0x1e51 0x0e70
  235. 0xff9f 0xefbe 0xdfdd 0xcffc 0xbf1b 0xaf3a 0x9f59 0x8f78
  236. 0x9188 0x81a9 0xb1ca 0xa1eb 0xd10c 0xc12d 0xf14e 0xe16f
  237. 0x1080 0x00a1 0x30c2 0x20e3 0x5004 0x4025 0x7046 0x6067
  238. 0x83b9 0x9398 0xa3fb 0xb3da 0xc33d 0xd31c 0xe37f 0xf35e
  239. 0x02b1 0x1290 0x22f3 0x32d2 0x4235 0x5214 0x6277 0x7256
  240. 0xb5ea 0xa5cb 0x95a8 0x8589 0xf56e 0xe54f 0xd52c 0xc50d
  241. 0x34e2 0x24c3 0x14a0 0x0481 0x7466 0x6447 0x5424 0x4405
  242. 0xa7db 0xb7fa 0x8799 0x97b8 0xe75f 0xf77e 0xc71d 0xd73c
  243. 0x26d3 0x36f2 0x0691 0x16b0 0x6657 0x7676 0x4615 0x5634
  244. 0xd94c 0xc96d 0xf90e 0xe92f 0x99c8 0x89e9 0xb98a 0xa9ab
  245. 0x5844 0x4865 0x7806 0x6827 0x18c0 0x08e1 0x3882 0x28a3
  246. 0xcb7d 0xdb5c 0xeb3f 0xfb1e 0x8bf9 0x9bd8 0xabbb 0xbb9a
  247. 0x4a75 0x5a54 0x6a37 0x7a16 0x0af1 0x1ad0 0x2ab3 0x3a92
  248. 0xfd2e 0xed0f 0xdd6c 0xcd4d 0xbdaa 0xad8b 0x9de8 0x8dc9
  249. 0x7c26 0x6c07 0x5c64 0x4c45 0x3ca2 0x2c83 0x1ce0 0x0cc1
  250. 0xef1f 0xff3e 0xcf5d 0xdf7c 0xaf9b 0xbfba 0x8fd9 0x9ff8
  251. 0x6e17 0x7e36 0x4e55 0x5e74 0x2e93 0x3eb2 0x0ed1 0x1ef0
  252. }
  253. proc ::redis_cluster::crc16 {s} {
  254. set s [encoding convertto ascii $s]
  255. set crc 0
  256. foreach char [split $s {}] {
  257. scan $char %c byte
  258. set crc [expr {(($crc<<8)&0xffff) ^ [lindex $::redis_cluster::XMODEMCRC16Lookup [expr {(($crc>>8)^$byte) & 0xff}]]}]
  259. }
  260. return $crc
  261. }
  262. # Hash a single key returning the slot it belongs to, Implemented hash
  263. # tags as described in the Redis Cluster specification.
  264. proc ::redis_cluster::hash {key} {
  265. # TODO: Handle hash slots.
  266. expr {[::redis_cluster::crc16 $key] & 16383}
  267. }
  268. # Return the slot the specified keys hash to.
  269. # If the keys hash to multiple slots, an empty string is returned to
  270. # signal that the command can't be run in Redis Cluster.
  271. proc ::redis_cluster::get_slot_from_keys {keys} {
  272. set slot {}
  273. foreach k $keys {
  274. set s [::redis_cluster::hash $k]
  275. if {$slot eq {}} {
  276. set slot $s
  277. } elseif {$slot != $s} {
  278. return {} ; # Error
  279. }
  280. }
  281. return $slot
  282. }