redis/cluster.go

344 lines
6.7 KiB
Go
Raw Normal View History

2015-01-24 15:12:48 +03:00
package redis
import (
2015-05-01 10:42:58 +03:00
"log"
2015-01-24 15:12:48 +03:00
"math/rand"
"strings"
"sync"
"sync/atomic"
"time"
)
type ClusterClient struct {
commandable
2015-04-04 16:46:57 +03:00
addrs []string
2015-04-08 12:28:21 +03:00
slots [][]string
slotsMx sync.RWMutex // Protects slots and addrs.
2015-03-30 17:10:53 +03:00
2015-04-04 16:46:57 +03:00
clients map[string]*Client
closed bool
clientsMx sync.RWMutex // Protects clients and closed.
2015-03-30 17:10:53 +03:00
opt *ClusterOptions
2015-01-24 15:12:48 +03:00
2015-05-01 10:42:58 +03:00
// Reports where slots reloading is in progress.
reloading uint32
2015-01-24 15:12:48 +03:00
}
// NewClusterClient returns a new Redis Cluster client as described in
// http://redis.io/topics/cluster-spec.
2015-04-04 16:46:57 +03:00
func NewClusterClient(opt *ClusterOptions) *ClusterClient {
2015-01-24 15:12:48 +03:00
client := &ClusterClient{
2015-04-08 12:28:50 +03:00
addrs: opt.Addrs,
slots: make([][]string, hashSlots),
2015-04-04 16:46:57 +03:00
clients: make(map[string]*Client),
2015-01-24 15:12:48 +03:00
opt: opt,
}
client.commandable.process = client.process
2015-05-01 10:42:58 +03:00
client.reloadSlots()
go client.reaper()
2015-04-04 16:46:57 +03:00
return client
2015-01-24 15:12:48 +03:00
}
// Close closes the cluster client, releasing any open resources.
//
// It is rare to Close a Client, as the Client is meant to be
// long-lived and shared between many goroutines.
2015-01-24 15:12:48 +03:00
func (c *ClusterClient) Close() error {
defer c.clientsMx.Unlock()
c.clientsMx.Lock()
if c.closed {
return nil
}
c.closed = true
c.resetClients()
c.setSlots(nil)
2015-04-04 16:46:57 +03:00
return nil
2015-01-24 15:12:48 +03:00
}
2015-04-04 16:46:57 +03:00
// getClient returns a Client for a given address.
2015-03-18 13:41:24 +03:00
func (c *ClusterClient) getClient(addr string) (*Client, error) {
if addr == "" {
return c.randomClient()
}
2015-04-04 16:46:57 +03:00
c.clientsMx.RLock()
client, ok := c.clients[addr]
if ok {
c.clientsMx.RUnlock()
2015-03-18 13:41:24 +03:00
return client, nil
2015-01-24 15:12:48 +03:00
}
2015-04-04 16:46:57 +03:00
c.clientsMx.RUnlock()
2015-01-24 15:12:48 +03:00
2015-04-04 16:46:57 +03:00
c.clientsMx.Lock()
if c.closed {
c.clientsMx.Unlock()
return nil, errClosed
}
2015-04-04 16:46:57 +03:00
client, ok = c.clients[addr]
2015-01-24 15:12:48 +03:00
if !ok {
opt := c.opt.clientOptions()
opt.Addr = addr
2015-05-02 16:19:22 +03:00
client = NewClient(opt)
2015-04-04 16:46:57 +03:00
c.clients[addr] = client
2015-01-24 15:12:48 +03:00
}
2015-04-04 16:46:57 +03:00
c.clientsMx.Unlock()
2015-03-18 13:41:24 +03:00
return client, nil
}
func (c *ClusterClient) slotAddrs(slot int) []string {
c.slotsMx.RLock()
addrs := c.slots[slot]
c.slotsMx.RUnlock()
return addrs
2015-01-24 15:12:48 +03:00
}
func (c *ClusterClient) slotMasterAddr(slot int) string {
addrs := c.slotAddrs(slot)
if len(addrs) > 0 {
return addrs[0]
}
return ""
}
// randomClient returns a Client for the first live node.
2015-04-04 16:46:57 +03:00
func (c *ClusterClient) randomClient() (client *Client, err error) {
for i := 0; i < 10; i++ {
n := rand.Intn(len(c.addrs))
2015-03-18 13:41:24 +03:00
client, err = c.getClient(c.addrs[n])
if err != nil {
continue
}
err = client.ClusterInfo().Err()
2015-04-04 16:46:57 +03:00
if err == nil {
return client, nil
}
}
return nil, err
}
2015-01-24 15:12:48 +03:00
func (c *ClusterClient) process(cmd Cmder) {
var ask bool
2015-04-04 16:46:57 +03:00
slot := hashSlot(cmd.clusterKey())
2015-01-24 15:12:48 +03:00
addr := c.slotMasterAddr(slot)
2015-03-18 13:41:24 +03:00
client, err := c.getClient(addr)
if err != nil {
cmd.setErr(err)
return
2015-04-04 16:46:57 +03:00
}
for attempt := 0; attempt <= c.opt.getMaxRedirects(); attempt++ {
if attempt > 0 {
cmd.reset()
}
2015-01-24 15:12:48 +03:00
if ask {
2015-04-04 16:46:57 +03:00
pipe := client.Pipeline()
2015-01-24 15:12:48 +03:00
pipe.Process(NewCmd("ASKING"))
pipe.Process(cmd)
_, _ = pipe.Exec()
ask = false
} else {
2015-04-04 16:46:57 +03:00
client.Process(cmd)
2015-01-24 15:12:48 +03:00
}
// If there is no (real) error, we are done!
err := cmd.Err()
2015-04-04 16:46:57 +03:00
if err == nil || err == Nil || err == TxFailedErr {
2015-01-24 15:12:48 +03:00
return
}
2015-04-07 12:30:06 +03:00
// On network errors try random node.
2015-04-04 16:46:57 +03:00
if isNetworkError(err) {
2015-04-07 12:30:06 +03:00
client, err = c.randomClient()
if err != nil {
return
2015-01-24 15:12:48 +03:00
}
continue
}
2015-03-18 13:41:24 +03:00
var moved bool
var addr string
moved, ask, addr = isMovedError(err)
if moved || ask {
if moved && c.slotMasterAddr(slot) != addr {
2015-05-01 10:42:58 +03:00
c.lazyReloadSlots()
2015-03-18 13:41:24 +03:00
}
client, err = c.getClient(addr)
if err != nil {
return
}
continue
2015-01-24 15:12:48 +03:00
}
2015-03-18 13:41:24 +03:00
break
2015-01-24 15:12:48 +03:00
}
}
2015-04-04 16:46:57 +03:00
// Closes all clients and returns last error if there are any.
func (c *ClusterClient) resetClients() (err error) {
for addr, client := range c.clients {
if e := client.Close(); e != nil {
err = e
}
delete(c.clients, addr)
2015-01-24 15:12:48 +03:00
}
2015-04-04 16:46:57 +03:00
return err
}
2015-01-24 15:12:48 +03:00
2015-04-04 16:46:57 +03:00
func (c *ClusterClient) setSlots(slots []ClusterSlotInfo) {
2015-03-30 17:53:28 +03:00
c.slotsMx.Lock()
2015-01-24 15:12:48 +03:00
2015-04-07 12:30:06 +03:00
seen := make(map[string]struct{})
2015-04-08 12:28:21 +03:00
for _, addr := range c.addrs {
seen[addr] = struct{}{}
}
for i := 0; i < hashSlots; i++ {
c.slots[i] = c.slots[i][:0]
}
2015-04-04 16:46:57 +03:00
for _, info := range slots {
2015-04-07 12:30:06 +03:00
for slot := info.Start; slot <= info.End; slot++ {
2015-04-08 12:28:21 +03:00
c.slots[slot] = info.Addrs
2015-04-07 12:30:06 +03:00
}
2015-04-08 12:28:21 +03:00
for _, addr := range info.Addrs {
if _, ok := seen[addr]; !ok {
c.addrs = append(c.addrs, addr)
seen[addr] = struct{}{}
}
2015-01-24 15:12:48 +03:00
}
}
2015-04-04 16:46:57 +03:00
c.slotsMx.Unlock()
2015-01-24 15:12:48 +03:00
}
2015-05-01 10:42:58 +03:00
func (c *ClusterClient) reloadSlots() {
defer atomic.StoreUint32(&c.reloading, 0)
2015-01-24 15:12:48 +03:00
2015-04-04 16:46:57 +03:00
client, err := c.randomClient()
if err != nil {
2015-05-01 10:42:58 +03:00
log.Printf("redis: randomClient failed: %s", err)
return
2015-01-24 15:12:48 +03:00
}
2015-04-04 16:46:57 +03:00
slots, err := client.ClusterSlots().Result()
if err != nil {
2015-05-01 10:42:58 +03:00
log.Printf("redis: ClusterSlots failed: %s", err)
return
2015-04-04 16:46:57 +03:00
}
c.setSlots(slots)
2015-01-24 15:12:48 +03:00
}
2015-05-01 10:42:58 +03:00
func (c *ClusterClient) lazyReloadSlots() {
if !atomic.CompareAndSwapUint32(&c.reloading, 0, 1) {
return
}
go c.reloadSlots()
2015-01-24 15:12:48 +03:00
}
// reaper closes idle connections to the cluster.
func (c *ClusterClient) reaper() {
2015-05-01 13:24:24 +03:00
ticker := time.NewTicker(time.Minute)
defer ticker.Stop()
for _ = range ticker.C {
c.clientsMx.RLock()
if c.closed {
c.clientsMx.RUnlock()
break
}
2015-04-08 12:28:21 +03:00
for _, client := range c.clients {
pool := client.connPool
// pool.First removes idle connections from the pool and
// returns first non-idle connection. So just put returned
// connection back.
if cn := pool.First(); cn != nil {
pool.Put(cn)
}
}
c.clientsMx.RUnlock()
}
}
2015-01-24 15:12:48 +03:00
//------------------------------------------------------------------------------
// ClusterOptions are used to configure a cluster client and should be
// passed to NewClusterClient.
2015-01-24 15:12:48 +03:00
type ClusterOptions struct {
// A seed list of host:port addresses of cluster nodes.
2015-01-24 15:12:48 +03:00
Addrs []string
// The maximum number of MOVED/ASK redirects to follow before
// giving up.
// Default is 16
MaxRedirects int
// Following options are copied from Options struct.
2015-01-24 15:12:48 +03:00
Password string
DialTimeout time.Duration
ReadTimeout time.Duration
WriteTimeout time.Duration
2015-01-24 15:12:48 +03:00
PoolSize int
PoolTimeout time.Duration
IdleTimeout time.Duration
2015-01-24 15:12:48 +03:00
}
func (opt *ClusterOptions) getMaxRedirects() int {
if opt.MaxRedirects == -1 {
return 0
}
if opt.MaxRedirects == 0 {
2015-01-24 15:12:48 +03:00
return 16
}
return opt.MaxRedirects
}
func (opt *ClusterOptions) clientOptions() *Options {
return &Options{
Password: opt.Password,
DialTimeout: opt.DialTimeout,
2015-01-24 15:12:48 +03:00
ReadTimeout: opt.ReadTimeout,
WriteTimeout: opt.WriteTimeout,
PoolSize: opt.PoolSize,
PoolTimeout: opt.PoolTimeout,
2015-01-24 15:12:48 +03:00
IdleTimeout: opt.IdleTimeout,
}
}
//------------------------------------------------------------------------------
const hashSlots = 16384
2015-05-25 16:22:27 +03:00
func hashKey(key string) string {
2015-01-24 15:12:48 +03:00
if s := strings.IndexByte(key, '{'); s > -1 {
if e := strings.IndexByte(key[s+1:], '}'); e > 0 {
return key[s+1 : s+e+1]
2015-01-24 15:12:48 +03:00
}
}
2015-05-25 16:22:27 +03:00
return key
}
// hashSlot returns a consistent slot number between 0 and 16383
// for any given string key.
func hashSlot(key string) int {
key = hashKey(key)
2015-01-24 15:12:48 +03:00
if key == "" {
return rand.Intn(hashSlots)
}
return int(crc16sum(key)) % hashSlots
}