-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathclient.go
More file actions
481 lines (429 loc) · 10 KB
/
client.go
File metadata and controls
481 lines (429 loc) · 10 KB
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
// Copyright 2016 CodisLabs. All Rights Reserved.
// Licensed under the MIT (MIT-LICENSE.txt) license.
package redis
import (
"container/list"
"net"
"strconv"
"strings"
"sync"
"time"
"github.com/CodisLabs/codis/pkg/utils/errors"
"github.com/CodisLabs/codis/pkg/utils/math2"
redigo "github.com/garyburd/redigo/redis"
)
type Client struct {
conn redigo.Conn
Addr string
Auth string
Database int
LastUse time.Time
Timeout time.Duration
}
func NewClientNoAuth(addr string, timeout time.Duration) (*Client, error) {
return NewClient(addr, "", timeout)
}
func NewClient(addr string, auth string, timeout time.Duration) (*Client, error) {
c, err := redigo.Dial("tcp", addr, []redigo.DialOption{
redigo.DialConnectTimeout(math2.MinDuration(time.Second, timeout)),
redigo.DialPassword(auth),
redigo.DialReadTimeout(timeout), redigo.DialWriteTimeout(timeout),
}...)
if err != nil {
return nil, errors.Trace(err)
}
return &Client{
conn: c, Addr: addr, Auth: auth,
LastUse: time.Now(), Timeout: timeout,
}, nil
}
func (c *Client) Close() error {
return c.conn.Close()
}
func (c *Client) Do(cmd string, args ...interface{}) (interface{}, error) {
r, err := c.conn.Do(cmd, args...)
if err != nil {
return nil, errors.Trace(err)
}
c.LastUse = time.Now()
if err, ok := r.(redigo.Error); ok {
return nil, errors.Trace(err)
}
return r, nil
}
func (c *Client) Receive() (interface{}, error) {
r, err := c.conn.Receive()
if err != nil {
return nil, errors.Trace(err)
}
c.LastUse = time.Now()
if err, ok := r.(redigo.Error); ok {
return nil, errors.Trace(err)
}
return r, nil
}
func (c *Client) Select(database int) error {
if c.Database == database {
return nil
}
_, err := c.Do("SELECT", database)
if err != nil {
c.Close()
return errors.Trace(err)
}
c.Database = database
return nil
}
func (c *Client) Shutdown() error {
_, err := c.Do("SHUTDOWN")
if err != nil {
c.Close()
return errors.Trace(err)
}
return nil
}
func (c *Client) Info() (map[string]string, error) {
text, err := redigo.String(c.Do("INFO"))
if err != nil {
return nil, errors.Trace(err)
}
info := make(map[string]string)
for _, line := range strings.Split(text, "\n") {
kv := strings.SplitN(line, ":", 2)
if len(kv) != 2 {
continue
}
if key := strings.TrimSpace(kv[0]); key != "" {
info[key] = strings.TrimSpace(kv[1])
}
}
return info, nil
}
func (c *Client) InfoKeySpace() (map[int]string, error) {
text, err := redigo.String(c.Do("INFO", "keyspace"))
if err != nil {
return nil, errors.Trace(err)
}
info := make(map[int]string)
for _, line := range strings.Split(text, "\n") {
kv := strings.SplitN(line, ":", 2)
if len(kv) != 2 {
continue
}
if key := strings.TrimSpace(kv[0]); key != "" && strings.HasPrefix(key, "db") {
n, err := strconv.Atoi(key[2:])
if err != nil {
return nil, errors.Trace(err)
}
info[n] = strings.TrimSpace(kv[1])
}
}
return info, nil
}
func (c *Client) InfoFull() (map[string]string, error) {
if info, err := c.Info(); err != nil {
return nil, errors.Trace(err)
} else {
host := info["master_host"]
port := info["master_port"]
if host != "" || port != "" {
info["master_addr"] = net.JoinHostPort(host, port)
}
r, err := c.Do("CONFIG", "GET", "maxmemory")
if err != nil {
return nil, errors.Trace(err)
}
p, err := redigo.Values(r, nil)
if err != nil || len(p) != 2 {
return nil, errors.Errorf("invalid response = %v", r)
}
v, err := redigo.Int(p[1], nil)
if err != nil {
return nil, errors.Errorf("invalid response = %v", r)
}
info["maxmemory"] = strconv.Itoa(v)
return info, nil
}
}
func (c *Client) SetMaster(master string) error {
host, port, err := net.SplitHostPort(master)
if err != nil {
return errors.Trace(err)
}
if _, err := c.Do("CONFIG", "SET", "masterauth", c.Auth); err != nil {
return errors.Trace(err)
}
if _, err := c.Do("SLAVEOF", host, port); err != nil {
return errors.Trace(err)
}
/*
c.conn.Send("MULTI")
c.conn.Send("CONFIG", "SET", "masterauth", c.Auth)
c.conn.Send("SLAVEOF", host, port)
c.conn.Send("CONFIG", "REWRITE")
c.conn.Send("CLIENT", "KILL", "TYPE", "normal")
values, err := redigo.Values(c.Do("EXEC"))
if err != nil {
return errors.Trace(err)
}
for _, r := range values {
if err, ok := r.(redigo.Error); ok {
return errors.Trace(err)
}
}
*/
return nil
}
func (c *Client) MigrateSlot(slot int, target string) (int, error) {
host, port, err := net.SplitHostPort(target)
if err != nil {
return 0, errors.Trace(err)
}
mseconds := int(c.Timeout / time.Millisecond)
if reply, err := c.Do("SLOTSMGRTTAGSLOT", host, port, mseconds, slot); err != nil {
return 0, errors.Trace(err)
} else {
p, err := redigo.Ints(redigo.Values(reply, nil))
if err != nil || len(p) != 2 {
return 0, errors.Errorf("invalid response = %v", reply)
}
return p[1], nil
}
}
type MigrateSlotAsyncOption struct {
MaxBulks int
MaxBytes int
NumKeys int
Timeout time.Duration
}
func (c *Client) MigrateSlotAsync(slot int, target string, option *MigrateSlotAsyncOption) (int, error) {
host, port, err := net.SplitHostPort(target)
if err != nil {
return 0, errors.Trace(err)
}
if reply, err := c.Do("SLOTSMGRTTAGSLOT-ASYNC", host, port, int(option.Timeout/time.Millisecond),
option.MaxBulks, option.MaxBytes, slot, option.NumKeys); err != nil {
return 0, errors.Trace(err)
} else {
p, err := redigo.Ints(redigo.Values(reply, nil))
if err != nil || len(p) != 2 {
return 0, errors.Errorf("invalid response = %v", reply)
}
return p[1], nil
}
}
func (c *Client) SlotsInfo() (map[int]int, error) {
if reply, err := c.Do("SLOTSINFO"); err != nil {
return nil, errors.Trace(err)
} else {
infos, err := redigo.Values(reply, nil)
if err != nil {
return nil, errors.Trace(err)
}
slots := make(map[int]int)
for i, info := range infos {
p, err := redigo.Ints(info, nil)
if err != nil || len(p) != 2 {
return nil, errors.Errorf("invalid response[%d] = %v", i, info)
}
slots[p[0]] = p[1]
}
return slots, nil
}
}
func (c *Client) Role() (string, error) {
if reply, err := c.Do("ROLE"); err != nil {
return "", err
} else {
values, err := redigo.Values(reply, nil)
if err != nil {
return "", errors.Trace(err)
}
if len(values) == 0 {
return "", errors.Errorf("invalid response = %v", reply)
}
role, err := redigo.String(values[0], nil)
if err != nil {
return "", errors.Errorf("invalid response[0] = %v", values[0])
}
return strings.ToUpper(role), nil
}
}
var ErrClosedPool = errors.New("use of closed redis pool")
type Pool struct {
mu sync.Mutex
auth string
pool map[string]*list.List
timeout time.Duration
exit struct {
C chan struct{}
}
closed bool
}
func NewPool(auth string, timeout time.Duration) *Pool {
p := &Pool{
auth: auth, timeout: timeout,
pool: make(map[string]*list.List),
}
p.exit.C = make(chan struct{})
if timeout != 0 {
go func() {
var ticker = time.NewTicker(time.Minute)
defer ticker.Stop()
for {
select {
case <-p.exit.C:
return
case <-ticker.C:
p.Cleanup()
}
}
}()
}
return p
}
func (p *Pool) isRecyclable(c *Client) bool {
if c.conn.Err() != nil {
return false
}
return p.timeout == 0 || time.Since(c.LastUse) < p.timeout
}
func (p *Pool) Close() error {
p.mu.Lock()
defer p.mu.Unlock()
if p.closed {
return nil
}
p.closed = true
close(p.exit.C)
for addr, list := range p.pool {
for i := list.Len(); i != 0; i-- {
c := list.Remove(list.Front()).(*Client)
c.Close()
}
delete(p.pool, addr)
}
return nil
}
func (p *Pool) Cleanup() error {
p.mu.Lock()
defer p.mu.Unlock()
if p.closed {
return ErrClosedPool
}
for addr, list := range p.pool {
for i := list.Len(); i != 0; i-- {
c := list.Remove(list.Front()).(*Client)
if p.isRecyclable(c) {
list.PushBack(c)
} else {
c.Close()
}
}
if list.Len() == 0 {
delete(p.pool, addr)
}
}
return nil
}
func (p *Pool) GetClient(addr string) (*Client, error) {
c, err := p.getClientFromCache(addr)
if err != nil || c != nil {
return c, err
}
return NewClient(addr, p.auth, p.timeout)
}
func (p *Pool) getClientFromCache(addr string) (*Client, error) {
p.mu.Lock()
defer p.mu.Unlock()
if p.closed {
return nil, ErrClosedPool
}
if list := p.pool[addr]; list != nil {
for i := list.Len(); i != 0; i-- {
c := list.Remove(list.Front()).(*Client)
if p.isRecyclable(c) {
return c, nil
} else {
c.Close()
}
}
}
return nil, nil
}
func (p *Pool) PutClient(c *Client) {
p.mu.Lock()
defer p.mu.Unlock()
if p.closed || !p.isRecyclable(c) {
c.Close()
} else {
cache := p.pool[c.Addr]
if cache == nil {
cache = list.New()
p.pool[c.Addr] = cache
}
cache.PushFront(c)
}
}
func (p *Pool) Info(addr string) (map[string]string, error) {
c, err := p.GetClient(addr)
if err != nil {
return nil, err
}
defer p.PutClient(c)
return c.Info()
}
func (p *Pool) InfoFull(addr string) (map[string]string, error) {
c, err := p.GetClient(addr)
if err != nil {
return nil, err
}
defer p.PutClient(c)
return c.InfoFull()
}
type InfoCache struct {
mu sync.Mutex
Auth string
data map[string]map[string]string
Timeout time.Duration
}
func (s *InfoCache) load(addr string) map[string]string {
s.mu.Lock()
defer s.mu.Unlock()
if s.data != nil {
return s.data[addr]
}
return nil
}
func (s *InfoCache) store(addr string, info map[string]string) map[string]string {
s.mu.Lock()
defer s.mu.Unlock()
if s.data == nil {
s.data = make(map[string]map[string]string)
}
if info != nil {
s.data[addr] = info
} else if s.data[addr] == nil {
s.data[addr] = make(map[string]string)
}
return s.data[addr]
}
func (s *InfoCache) Get(addr string) map[string]string {
info := s.load(addr)
if info != nil {
return info
}
info, _ = s.getSlow(addr)
return s.store(addr, info)
}
func (s *InfoCache) GetRunId(addr string) string {
return s.Get(addr)["run_id"]
}
func (s *InfoCache) getSlow(addr string) (map[string]string, error) {
c, err := NewClient(addr, s.Auth, s.Timeout)
if err != nil {
return nil, err
}
defer c.Close()
return c.Info()
}