mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-09-20 13:30:46 +02:00
The sentinel stores hardcoded a 30s read timeout and a 1m retry backoff. After a sentinel failover every request that picked a pooled connection to the old master sat there for 30s before the connection was retired, and the pool timeout derived from it (read timeout + 1s) queued the rest behind them. The other redis stores took the go-redis defaults with no way to tune anything. Read the dial, timeout and pool knobs from each redis store section instead, keeping the go-redis default for every key left unset.
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
package redis
|
|
|
|
import (
|
|
"github.com/redis/go-redis/v9"
|
|
"github.com/seaweedfs/seaweedfs/weed/filer"
|
|
"github.com/seaweedfs/seaweedfs/weed/filer/redis_conf"
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
|
)
|
|
|
|
func init() {
|
|
filer.Stores = append(filer.Stores, &RedisClusterStore{})
|
|
}
|
|
|
|
type RedisClusterStore struct {
|
|
UniversalRedisStore
|
|
}
|
|
|
|
func (store *RedisClusterStore) GetName() string {
|
|
return "redis_cluster"
|
|
}
|
|
|
|
func (store *RedisClusterStore) Initialize(configuration util.Configuration, prefix string) (err error) {
|
|
|
|
configuration.SetDefault(prefix+"useReadOnly", false)
|
|
configuration.SetDefault(prefix+"routeByLatency", false)
|
|
|
|
return store.initialize(
|
|
configuration.GetStringSlice(prefix+"addresses"),
|
|
configuration.GetString(prefix+"password"),
|
|
configuration.GetBool(prefix+"useReadOnly"),
|
|
configuration.GetBool(prefix+"routeByLatency"),
|
|
redis_conf.Read(configuration, prefix),
|
|
)
|
|
}
|
|
|
|
func (store *RedisClusterStore) initialize(addresses []string, password string, readOnly, routeByLatency bool, settings redis_conf.Settings) (err error) {
|
|
options := &redis.ClusterOptions{
|
|
Addrs: addresses,
|
|
Password: password,
|
|
ReadOnly: readOnly,
|
|
RouteByLatency: routeByLatency,
|
|
}
|
|
settings.ApplyToCluster(options)
|
|
store.Client = redis.NewClusterClient(options)
|
|
return
|
|
}
|