-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
redis_shard.go
238 lines (211 loc) · 6.54 KB
/
redis_shard.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package centrifuge
import (
"crypto/tls"
"errors"
"fmt"
"hash/fnv"
"net"
"net/url"
"strconv"
"strings"
"sync"
"time"
"github.com/redis/rueidis"
)
type (
// channelID is unique channel identifier in Redis.
channelID string
)
const (
defaultRedisIOTimeout = 4 * time.Second
defaultRedisConnectTimeout = time.Second
)
type RedisShard struct {
config RedisShardConfig
client rueidis.Client
closeCh chan struct{}
closeOnce sync.Once
useCluster bool
}
func confFromAddress(address string, conf RedisShardConfig) (RedisShardConfig, error) {
if !strings.HasPrefix(address, "tcp://") && !strings.HasPrefix(address, "redis://") && !strings.HasPrefix(address, "unix://") {
if host, port, err := net.SplitHostPort(address); err == nil && host != "" && port != "" {
conf.network = "tcp"
conf.address = address
return conf, nil
}
return conf, errors.New("malformed connection address")
}
u, err := url.Parse(address)
if err != nil {
return conf, errors.New("malformed connection address")
}
switch u.Scheme {
case "tcp", "redis":
conf.network = "tcp"
conf.address = u.Host
if u.Path != "" {
db, err := strconv.Atoi(strings.TrimPrefix(u.Path, "/"))
if err != nil {
return conf, fmt.Errorf("can't parse Redis DB number from connection address")
}
conf.DB = db
}
case "unix":
conf.network = "unix"
conf.address = u.Path
default:
return conf, errors.New("connection address should have tcp://, redis:// or unix:// scheme")
}
if u.User != nil {
if u.User.Username() != "" {
conf.User = u.User.Username()
}
if pass, ok := u.User.Password(); ok {
conf.Password = pass
}
}
return conf, nil
}
// NewRedisShard initializes new Redis shard.
func NewRedisShard(_ *Node, conf RedisShardConfig) (*RedisShard, error) {
var err error
if conf.Address != "" {
conf, err = confFromAddress(conf.Address, conf)
if err != nil {
return nil, err
}
}
if conf.ConnectTimeout == 0 {
conf.ConnectTimeout = defaultRedisConnectTimeout
}
if conf.IOTimeout == 0 {
conf.IOTimeout = defaultRedisIOTimeout
}
shard := &RedisShard{
config: conf,
useCluster: len(conf.ClusterAddresses) > 0,
closeCh: make(chan struct{}),
}
options := rueidis.ClientOption{
SelectDB: conf.DB,
ConnWriteTimeout: conf.IOTimeout,
TLSConfig: conf.TLSConfig,
Username: conf.User,
Password: conf.Password,
ClientName: conf.ClientName,
ShuffleInit: true,
DisableCache: true,
AlwaysPipelining: true,
AlwaysRESP2: conf.ForceRESP2,
MaxFlushDelay: 100 * time.Microsecond,
}
if len(conf.SentinelAddresses) > 0 {
options.InitAddress = conf.SentinelAddresses
options.Sentinel = rueidis.SentinelOption{
TLSConfig: conf.SentinelTLSConfig,
MasterSet: conf.SentinelMasterName,
Username: conf.SentinelUser,
Password: conf.SentinelPassword,
ClientName: conf.SentinelClientName,
}
} else if len(conf.ClusterAddresses) > 0 {
options.InitAddress = conf.ClusterAddresses
} else {
if conf.network == "unix" {
options.DialFn = func(s string, d *net.Dialer, c *tls.Config) (net.Conn, error) {
return d.Dial("unix", s)
}
}
options.InitAddress = []string{conf.address}
}
options.Dialer = net.Dialer{
Timeout: conf.ConnectTimeout,
}
client, err := rueidis.NewClient(options)
if err != nil {
return nil, err
}
shard.client = client
return shard, nil
}
// RedisShardConfig contains Redis connection options.
type RedisShardConfig struct {
// Address is a Redis server connection address.
// This can be:
// - host:port
// - tcp://[[:password]@]host:port[/db][?option1=value1&optionN=valueN]
// - redis://[[:password]@]host:port[/db][?option1=value1&optionN=valueN]
// - unix://[[:password]@]path[?option1=value1&optionN=valueN]
Address string
// ClusterAddresses is a slice of seed cluster addrs for this shard.
// Each address should be in form of host:port. If ClusterAddresses set then
// RedisShardConfig.Address not used.
ClusterAddresses []string
// SentinelAddresses is a slice of Sentinel addresses. Each address should
// be in form of host:port. If set then Redis address will be automatically
// discovered from Sentinel.
SentinelAddresses []string
// SentinelMasterName is a name of Redis instance master Sentinel monitors.
SentinelMasterName string
// SentinelUser is a user for Sentinel ACL-based auth.
SentinelUser string
// SentinelPassword is a password for Sentinel. Works with Sentinel >= 5.0.1.
SentinelPassword string
// SentinelClientName is a client name for established connections to Sentinel.
SentinelClientName string
// SentinelTLSConfig is a TLS configuration for Sentinel connections.
SentinelTLSConfig *tls.Config
// DB is Redis database number. If not set then database 0 used. Does not make sense in Redis Cluster case.
DB int
// User is a username for Redis ACL-based auth.
User string
// Password is password to use when connecting to Redis database.
// If zero then password not used.
Password string
// ClientName for established connections. See https://redis.io/commands/client-setname/
ClientName string
// TLSConfig contains connection TLS configuration.
TLSConfig *tls.Config
// ConnectTimeout is a timeout on connect operation.
// By default, 1 second is used.
ConnectTimeout time.Duration
// IOTimeout is a timeout on Redis connection operations. This is used as a write deadline
// for connection, also Redis client we use internally periodically (once in a second) PINGs
// Redis with this timeout for PING operation to find out stale/broken/blocked connections.
// By default, 4 seconds is used.
IOTimeout time.Duration
// ForceRESP2 if set to true forces using RESP2 protocol for communicating with Redis.
// By default, Redis client tries to detect supported Redis protocol automatically
// trying RESP3 first.
ForceRESP2 bool
network string
address string
}
func (s *RedisShard) Close() {
s.closeOnce.Do(func() {
close(s.closeCh)
s.client.Close()
})
}
func (s *RedisShard) string() string {
return s.config.address
}
// consistentIndex is an adapted function from https://github.com/dgryski/go-jump
// package by Damian Gryski. It consistently chooses a hash bucket number in the
// range [0, numBuckets) for the given string. numBuckets must be >= 1.
func consistentIndex(s string, numBuckets int) int {
hash := fnv.New64a()
_, _ = hash.Write([]byte(s))
key := hash.Sum64()
var (
b int64 = -1
j int64
)
for j < int64(numBuckets) {
b = j
key = key*2862933555777941757 + 1
j = int64(float64(b+1) * (float64(int64(1)<<31) / float64((key>>33)+1)))
}
return int(b)
}