1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-07 18:21:09 +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,15 +435,21 @@ func (c *ClusterClient) reloadSlots() {
func (c *ClusterClient) setNodesLatency() { func (c *ClusterClient) setNodesLatency() {
const n = 10 const n = 10
wg := &sync.WaitGroup{}
for _, node := range c.getNodes() { for _, node := range c.getNodes() {
var latency time.Duration wg.Add(1)
for i := 0; i < n; i++ { go func(node *clusterNode) {
t1 := time.Now() defer wg.Done()
node.Client.Ping() var latency time.Duration
latency += time.Since(t1) for i := 0; i < n; i++ {
} t1 := time.Now()
node.Latency = latency / n node.Client.Ping()
latency += time.Since(t1)
}
node.Latency = latency / n
}(node)
} }
wg.Wait()
} }
// reaper closes idle connections to the cluster. // reaper closes idle connections to the cluster.