redis/sentinel.go

326 lines
7.0 KiB
Go
Raw Normal View History

2014-05-11 18:11:55 +04:00
package redis
import (
"errors"
2015-12-22 16:45:03 +03:00
"fmt"
2014-05-11 18:11:55 +04:00
"net"
"strings"
"sync"
"time"
)
//------------------------------------------------------------------------------
// FailoverOptions are used to configure a failover client and should
// be passed to NewFailoverClient.
2014-05-11 18:11:55 +04:00
type FailoverOptions struct {
2015-01-31 17:54:37 +03:00
// The master name.
MasterName string
// A seed list of host:port addresses of sentinel nodes.
2014-05-11 18:11:55 +04:00
SentinelAddrs []string
// Following options are copied from Options struct.
2014-05-11 18:11:55 +04:00
Password string
DB int64
DialTimeout time.Duration
ReadTimeout time.Duration
2015-01-31 17:54:37 +03:00
WriteTimeout time.Duration
2014-05-11 18:11:55 +04:00
PoolSize int
2015-01-31 17:54:37 +03:00
PoolTimeout time.Duration
IdleTimeout time.Duration
2015-08-24 11:46:48 +03:00
MaxRetries int
2014-05-11 18:11:55 +04:00
}
func (opt *FailoverOptions) options() *Options {
return &Options{
Addr: "FailoverClient",
2014-05-11 18:11:55 +04:00
DB: opt.DB,
Password: opt.Password,
DialTimeout: opt.DialTimeout,
2014-05-11 18:11:55 +04:00
ReadTimeout: opt.ReadTimeout,
WriteTimeout: opt.WriteTimeout,
PoolSize: opt.PoolSize,
PoolTimeout: opt.PoolTimeout,
2014-05-11 18:11:55 +04:00
IdleTimeout: opt.IdleTimeout,
2015-08-24 11:46:48 +03:00
MaxRetries: opt.MaxRetries,
2014-05-11 18:11:55 +04:00
}
}
2015-09-12 09:36:03 +03:00
// NewFailoverClient returns a Redis client that uses Redis Sentinel
// for automatic failover. It's safe for concurrent use by multiple
// goroutines.
2014-05-11 18:11:55 +04:00
func NewFailoverClient(failoverOpt *FailoverOptions) *Client {
opt := failoverOpt.options()
failover := &sentinelFailover{
masterName: failoverOpt.MasterName,
sentinelAddrs: failoverOpt.SentinelAddrs,
opt: opt,
}
base := baseClient{
opt: opt,
connPool: failover.Pool(),
onClose: func() error {
return failover.Close()
},
}
return &Client{
baseClient: base,
commandable: commandable{
process: base.process,
},
}
2014-05-11 18:11:55 +04:00
}
//------------------------------------------------------------------------------
type sentinelClient struct {
baseClient
2015-01-24 15:12:48 +03:00
commandable
2014-05-11 18:11:55 +04:00
}
func newSentinel(opt *Options) *sentinelClient {
base := baseClient{
2015-01-24 15:12:48 +03:00
opt: opt,
connPool: newConnPool(opt),
2015-01-24 15:12:48 +03:00
}
2014-05-11 18:11:55 +04:00
return &sentinelClient{
2015-01-24 15:12:48 +03:00
baseClient: base,
commandable: commandable{process: base.process},
2014-05-11 18:11:55 +04:00
}
}
func (c *sentinelClient) PubSub() *PubSub {
return &PubSub{
base: &baseClient{
2014-05-11 18:11:55 +04:00
opt: c.opt,
connPool: newStickyConnPool(c.connPool, false),
2014-05-11 18:11:55 +04:00
},
}
}
func (c *sentinelClient) GetMasterAddrByName(name string) *StringSliceCmd {
cmd := NewStringSliceCmd("SENTINEL", "get-master-addr-by-name", name)
c.Process(cmd)
return cmd
}
func (c *sentinelClient) Sentinels(name string) *SliceCmd {
cmd := NewSliceCmd("SENTINEL", "sentinels", name)
c.Process(cmd)
return cmd
}
type sentinelFailover struct {
masterName string
sentinelAddrs []string
opt *Options
2014-05-11 18:11:55 +04:00
pool pool
poolOnce sync.Once
mu sync.RWMutex
sentinel *sentinelClient
}
func (d *sentinelFailover) Close() error {
return d.resetSentinel()
2014-05-11 18:11:55 +04:00
}
func (d *sentinelFailover) dial() (net.Conn, error) {
addr, err := d.MasterAddr()
if err != nil {
return nil, err
}
return net.DialTimeout("tcp", addr, d.opt.DialTimeout)
}
func (d *sentinelFailover) Pool() pool {
d.poolOnce.Do(func() {
d.opt.Dialer = d.dial
d.pool = newConnPool(d.opt)
2014-05-11 18:11:55 +04:00
})
return d.pool
}
func (d *sentinelFailover) MasterAddr() (string, error) {
defer d.mu.Unlock()
d.mu.Lock()
2014-05-11 18:11:55 +04:00
// Try last working sentinel.
if d.sentinel != nil {
addr, err := d.sentinel.GetMasterAddrByName(d.masterName).Result()
2014-05-11 18:11:55 +04:00
if err != nil {
2016-02-06 13:16:09 +03:00
Logger.Printf("sentinel: GetMasterAddrByName %q failed: %s", d.masterName, err)
d._resetSentinel()
2014-05-11 18:11:55 +04:00
} else {
addr := net.JoinHostPort(addr[0], addr[1])
2016-02-06 13:16:09 +03:00
Logger.Printf("sentinel: %q addr is %s", d.masterName, addr)
2014-05-11 18:11:55 +04:00
return addr, nil
}
}
for i, sentinelAddr := range d.sentinelAddrs {
2014-05-11 18:11:55 +04:00
sentinel := newSentinel(&Options{
Addr: sentinelAddr,
2014-05-11 18:11:55 +04:00
DialTimeout: d.opt.DialTimeout,
ReadTimeout: d.opt.ReadTimeout,
WriteTimeout: d.opt.WriteTimeout,
PoolSize: d.opt.PoolSize,
2015-01-31 16:20:37 +03:00
PoolTimeout: d.opt.PoolTimeout,
2014-05-11 18:11:55 +04:00
IdleTimeout: d.opt.IdleTimeout,
})
masterAddr, err := sentinel.GetMasterAddrByName(d.masterName).Result()
2014-05-11 18:11:55 +04:00
if err != nil {
2016-02-06 13:16:09 +03:00
Logger.Printf("sentinel: GetMasterAddrByName %q failed: %s", d.masterName, err)
sentinel.Close()
continue
2014-05-11 18:11:55 +04:00
}
// Push working sentinel to the top.
d.sentinelAddrs[0], d.sentinelAddrs[i] = d.sentinelAddrs[i], d.sentinelAddrs[0]
d.setSentinel(sentinel)
addr := net.JoinHostPort(masterAddr[0], masterAddr[1])
2016-02-06 13:16:09 +03:00
Logger.Printf("sentinel: %q addr is %s", d.masterName, addr)
return addr, nil
2014-05-11 18:11:55 +04:00
}
return "", errors.New("redis: all sentinels are unreachable")
}
func (d *sentinelFailover) setSentinel(sentinel *sentinelClient) {
d.discoverSentinels(sentinel)
d.sentinel = sentinel
2014-05-11 18:11:55 +04:00
go d.listen()
}
func (d *sentinelFailover) resetSentinel() error {
d.mu.Lock()
err := d._resetSentinel()
d.mu.Unlock()
return err
}
func (d *sentinelFailover) _resetSentinel() error {
var err error
if d.sentinel != nil {
err = d.sentinel.Close()
d.sentinel = nil
}
return err
}
2014-05-11 18:11:55 +04:00
func (d *sentinelFailover) discoverSentinels(sentinel *sentinelClient) {
sentinels, err := sentinel.Sentinels(d.masterName).Result()
if err != nil {
2016-02-06 13:16:09 +03:00
Logger.Printf("sentinel: Sentinels %q failed: %s", d.masterName, err)
2014-05-11 18:11:55 +04:00
return
}
for _, sentinel := range sentinels {
vals := sentinel.([]interface{})
for i := 0; i < len(vals); i += 2 {
key := vals[i].(string)
if key == "name" {
sentinelAddr := vals[i+1].(string)
if !contains(d.sentinelAddrs, sentinelAddr) {
Logger.Printf(
2016-02-06 13:16:09 +03:00
"sentinel: discovered new %q sentinel: %s",
2014-05-11 18:11:55 +04:00
d.masterName, sentinelAddr,
)
d.sentinelAddrs = append(d.sentinelAddrs, sentinelAddr)
}
}
}
}
}
// closeOldConns closes connections to the old master after failover switch.
func (d *sentinelFailover) closeOldConns(newMaster string) {
// Good connections that should be put back to the pool. They
// can't be put immediately, because pool.First will return them
// again on next iteration.
cnsToPut := make([]*conn, 0)
for {
cn := d.pool.First()
if cn == nil {
break
}
if cn.RemoteAddr().String() != newMaster {
2015-12-22 16:45:03 +03:00
err := fmt.Errorf(
2016-02-06 13:16:09 +03:00
"sentinel: closing connection to the old master %s",
cn.RemoteAddr(),
)
Logger.Print(err)
2015-12-22 16:45:03 +03:00
d.pool.Remove(cn, err)
} else {
cnsToPut = append(cnsToPut, cn)
}
}
for _, cn := range cnsToPut {
d.pool.Put(cn)
}
}
2014-05-11 18:11:55 +04:00
func (d *sentinelFailover) listen() {
var pubsub *PubSub
for {
if pubsub == nil {
pubsub = d.sentinel.PubSub()
2014-05-11 18:11:55 +04:00
if err := pubsub.Subscribe("+switch-master"); err != nil {
2016-02-06 13:16:09 +03:00
Logger.Printf("sentinel: Subscribe failed: %s", err)
2014-05-11 18:11:55 +04:00
d.resetSentinel()
return
}
}
msg, err := pubsub.ReceiveMessage()
2014-05-11 18:11:55 +04:00
if err != nil {
Logger.Printf("sentinel: ReceiveMessage failed: %s", err)
pubsub.Close()
d.resetSentinel()
2014-05-11 18:11:55 +04:00
return
}
switch msg.Channel {
case "+switch-master":
parts := strings.Split(msg.Payload, " ")
if parts[0] != d.masterName {
Logger.Printf("sentinel: ignore new %s addr", parts[0])
continue
2014-05-11 18:11:55 +04:00
}
addr := net.JoinHostPort(parts[3], parts[4])
Logger.Printf(
"sentinel: new %q addr is %s",
d.masterName, addr,
)
d.closeOldConns(addr)
2014-05-11 18:11:55 +04:00
}
}
}
func contains(slice []string, str string) bool {
for _, s := range slice {
if s == str {
return true
}
}
return false
}