1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-06 01:01:12 +03:00

Merge pull request #452 from minjatJ/fix-cluster-latency_v4

Setting node latency can take a while
This commit is contained in:
Vladimir Mihailenco
2016-12-20 12:13:33 +02:00
committed by GitHub

View File

@ -435,7 +435,11 @@ func (c *ClusterClient) reloadSlots() {
func (c *ClusterClient) setNodesLatency() {
const n = 10
wg := &sync.WaitGroup{}
for _, node := range c.getNodes() {
wg.Add(1)
go func(node *clusterNode) {
defer wg.Done()
var latency time.Duration
for i := 0; i < n; i++ {
t1 := time.Now()
@ -443,7 +447,9 @@ func (c *ClusterClient) setNodesLatency() {
latency += time.Since(t1)
}
node.Latency = latency / n
}(node)
}
wg.Wait()
}
// reaper closes idle connections to the cluster.