Description
I am using go-redis version v6.14.2. I have my application running in an AWS cluster behind loadbalancer. All redis requests failed in one of the nodes in the cluster. Rest of the nodes were working as expected. Application started working properly after a restart. We are using ElastiCache.
Can you please help me with identifying the issue ??
If it is previously known issue and is solved in latest version, can you point me to that link ??
The error was "dial tcp: i/o timeout".
Below is my cluster configuration excluding redis host address and password:
- ReadOnly : true
- RouteByLatency : true
- RouteRandomly : true
- DialTimeout : 300ms
- ReadTimeout : 30s
- Write Timeout : 30s
- PoolSize : 12000
- PoolTimeout : 32
- IdleTimeout : 120s
- IdleCheckFrequency : 1s
==========================================================================
Code
import (
goRedisClient "github.com/go-redis/redis"
)
func GetRedisClient() *goRedisClient.ClusterClient {
clusterClientOnce.Do(func() {
redisClusterClient = goRedisClient.NewClusterClient(
&goRedisClient.ClusterOptions{
Addrs: viper.GetStringSlice("redis.hosts"),
ReadOnly: true,
RouteByLatency: true,
RouteRandomly: true,
Password: viper.GetString("redis.password"),
DialTimeout: viper.GetDuration("redis.dial_timeout"),
ReadTimeout: viper.GetDuration("redis.read_timeout"),
WriteTimeout: viper.GetDuration("redis.write_timeout"),
PoolSize: viper.GetInt("redis.max_active_connections"),
PoolTimeout: viper.GetDuration("redis.pool_timeout"),
IdleTimeout: viper.GetDuration("redis.idle_connection_timeout"),
IdleCheckFrequency: viper.GetDuration("redis.idle_check_frequency"),
},
)
if err := redisClusterClient.Ping().Err(); err != nil {
log.WithError(err).Error(errorCreatingRedisClusterClient)
}
})
return redisClusterClient
}