Skip to content

Commit

Permalink
Cleanup cmds info
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed May 17, 2018
1 parent d5f5c24 commit 18b2e30
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 33 deletions.
51 changes: 39 additions & 12 deletions cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -300,17 +300,21 @@ func (c *clusterNodes) GC(generation uint32) {
}
}

func (c *clusterNodes) GetOrCreate(addr string) (*clusterNode, error) {
func (c *clusterNodes) Get(addr string) (*clusterNode, error) {
var node *clusterNode
var err error

c.mu.RLock()
if c.closed {
err = pool.ErrClosed
} else {
node = c.allNodes[addr]
}
c.mu.RUnlock()
return node, err
}

func (c *clusterNodes) GetOrCreate(addr string) (*clusterNode, error) {
node, err := c.Get(addr)
if err != nil {
return nil, err
}
Expand Down Expand Up @@ -580,11 +584,11 @@ func NewClusterClient(opt *ClusterOptions) *ClusterClient {
opt.init()

c := &ClusterClient{
opt: opt,
nodes: newClusterNodes(opt),
cmdsInfoCache: newCmdsInfoCache(),
opt: opt,
nodes: newClusterNodes(opt),
}
c.state = newClusterStateHolder(c.loadState)
c.cmdsInfoCache = newCmdsInfoCache(c.cmdsInfo)

c.process = c.defaultProcess
c.processPipeline = c.defaultProcessPipeline
Expand Down Expand Up @@ -630,17 +634,39 @@ func (c *ClusterClient) retryBackoff(attempt int) time.Duration {
return internal.RetryBackoff(attempt, c.opt.MinRetryBackoff, c.opt.MaxRetryBackoff)
}

func (c *ClusterClient) cmdInfo(name string) *CommandInfo {
cmdsInfo, err := c.cmdsInfoCache.Do(func() (map[string]*CommandInfo, error) {
node, err := c.nodes.Random()
func (c *ClusterClient) cmdsInfo() (map[string]*CommandInfo, error) {
addrs, err := c.nodes.Addrs()
if err != nil {
return nil, err
}

var firstErr error
for _, addr := range addrs {
node, err := c.nodes.Get(addr)
if err != nil {
return nil, err
}
return node.Client.Command().Result()
})
if node == nil {
continue
}

info, err := node.Client.Command().Result()
if err == nil {
return info, nil
}
if firstErr == nil {
firstErr = err
}
}
return nil, firstErr
}

func (c *ClusterClient) cmdInfo(name string) *CommandInfo {
cmdsInfo, err := c.cmdsInfoCache.Get()
if err != nil {
return nil
}

info := cmdsInfo[name]
if info == nil {
internal.Logf("info for cmd=%s not found", name)
Expand Down Expand Up @@ -704,13 +730,14 @@ func (c *ClusterClient) slotMasterNode(slot int) (*clusterNode, error) {

func (c *ClusterClient) Watch(fn func(*Tx) error, keys ...string) error {
if len(keys) == 0 {
return fmt.Errorf("redis: keys don't hash to the same slot")
return fmt.Errorf("redis: Watch requires at least one key")
}

slot := hashtag.Slot(keys[0])
for _, key := range keys[1:] {
if hashtag.Slot(key) != slot {
return fmt.Errorf("redis: Watch requires all keys to be in the same slot")
err := fmt.Errorf("redis: Watch requires all keys to be in the same slot")
return err
}
}

Expand Down
12 changes: 8 additions & 4 deletions command.go
Original file line number Diff line number Diff line change
Expand Up @@ -1027,17 +1027,21 @@ func (cmd *CommandsInfoCmd) readReply(cn *pool.Conn) error {
//------------------------------------------------------------------------------

type cmdsInfoCache struct {
fn func() (map[string]*CommandInfo, error)

once internal.Once
cmds map[string]*CommandInfo
}

func newCmdsInfoCache() *cmdsInfoCache {
return &cmdsInfoCache{}
func newCmdsInfoCache(fn func() (map[string]*CommandInfo, error)) *cmdsInfoCache {
return &cmdsInfoCache{
fn: fn,
}
}

func (c *cmdsInfoCache) Do(fn func() (map[string]*CommandInfo, error)) (map[string]*CommandInfo, error) {
func (c *cmdsInfoCache) Get() (map[string]*CommandInfo, error) {
err := c.once.Do(func() error {
cmds, err := fn()
cmds, err := c.fn()
if err != nil {
return err
}
Expand Down
37 changes: 20 additions & 17 deletions ring.go
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,11 @@ func NewRing(opt *RingOptions) *Ring {
opt.init()

ring := &Ring{
opt: opt,
shards: newRingShards(),
cmdsInfoCache: newCmdsInfoCache(),
opt: opt,
shards: newRingShards(),
}
ring.cmdsInfoCache = newCmdsInfoCache(ring.cmdsInfo)

ring.processPipeline = ring.defaultProcessPipeline
ring.cmdable.setProcessor(ring.Process)

Expand Down Expand Up @@ -428,21 +429,23 @@ func (c *Ring) ForEachShard(fn func(client *Client) error) error {
}
}

func (c *Ring) cmdInfo(name string) *CommandInfo {
cmdsInfo, err := c.cmdsInfoCache.Do(func() (map[string]*CommandInfo, error) {
shards := c.shards.List()
firstErr := errRingShardsDown
for _, shard := range shards {
cmdsInfo, err := shard.Client.Command().Result()
if err == nil {
return cmdsInfo, nil
}
if firstErr == nil {
firstErr = err
}
func (c *Ring) cmdsInfo() (map[string]*CommandInfo, error) {
shards := c.shards.List()
firstErr := errRingShardsDown
for _, shard := range shards {
cmdsInfo, err := shard.Client.Command().Result()
if err == nil {
return cmdsInfo, nil
}
return nil, firstErr
})
if firstErr == nil {
firstErr = err
}
}
return nil, firstErr
}

func (c *Ring) cmdInfo(name string) *CommandInfo {
cmdsInfo, err := c.cmdsInfoCache.Get()
if err != nil {
return nil
}
Expand Down

0 comments on commit 18b2e30

Please sign in to comment.