-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmemorystore.go
1016 lines (843 loc) · 30.2 KB
/
memorystore.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
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package appwrap
import (
"bytes"
"context"
"errors"
"fmt"
"io"
"os"
"os/signal"
"reflect"
"runtime"
"strconv"
"sync"
"time"
cloudms "cloud.google.com/go/redis/apiv1"
"github.com/cespare/xxhash/v2"
"github.com/googleapis/gax-go/v2"
"github.com/redis/go-redis/v9"
"go.opencensus.io/tag"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/trace"
redispb "google.golang.org/genproto/googleapis/cloud/redis/v1"
"github.com/pendo-io/appwrap/internal/metrics"
)
type redisAPIConnectorFn func(ctx context.Context) (redisAPIService, error)
func NewRedisAPIService(ctx context.Context) (redisAPIService, error) {
return cloudms.NewCloudRedisClient(ctx)
}
// redisAPIService captures the behavior of *redispb.CloudRedisClient, to make it mockable to testing.
type redisAPIService interface {
io.Closer
FailoverInstance(ctx context.Context, req *redispb.FailoverInstanceRequest, opts ...gax.CallOption) (*cloudms.FailoverInstanceOperation, error)
GetInstance(context.Context, *redispb.GetInstanceRequest, ...gax.CallOption) (*redispb.Instance, error)
}
// Implements needed redis methods for mocking purposes. See *redis.Client for a full list of available methods
// Implementations of these methods convert the returned redis Cmd objects into mockable data by calling
// Err(), Result(), etc.
type redisCommonInterface interface {
Del(ctx context.Context, keys ...string) error
Exists(ctx context.Context, keys ...string) (int64, error)
FlushAll(ctx context.Context) error
FlushAllAsync(ctx context.Context) error
Get(ctx context.Context, key string) ([]byte, error)
IncrBy(ctx context.Context, key string, value int64) (int64, error)
MGet(ctx context.Context, keys ...string) ([]interface{}, error)
Set(ctx context.Context, key string, value interface{}, expiration time.Duration) error
SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration) (bool, error)
TxPipeline() redisPipelineInterface
}
// Additionally implements Watch for transactions
type redisClientInterface interface {
redisCommonInterface
PoolStats() *redis.PoolStats
Watch(ctx context.Context, fn func(*redis.Tx) error, keys ...string) error
}
type redisClientImplementation struct {
// common is used for all methods defined on redisCommonInterface
common redis.Cmdable
// client is used for the redisClientInterface-specific methods
client *redis.Client
}
func (rci *redisClientImplementation) Del(ctx context.Context, keys ...string) error {
return rci.common.Del(ctx, keys...).Err()
}
func (rci *redisClientImplementation) Exists(ctx context.Context, keys ...string) (int64, error) {
return rci.common.Exists(ctx, keys...).Result()
}
func (rci *redisClientImplementation) FlushAll(ctx context.Context) error {
return rci.common.FlushAll(ctx).Err()
}
func (rci *redisClientImplementation) FlushAllAsync(ctx context.Context) error {
return rci.common.FlushAllAsync(ctx).Err()
}
func (rci *redisClientImplementation) Get(ctx context.Context, key string) ([]byte, error) {
return rci.common.Get(ctx, key).Bytes()
}
func (rci *redisClientImplementation) IncrBy(ctx context.Context, key string, value int64) (int64, error) {
return rci.common.IncrBy(ctx, key, value).Result()
}
func (rci *redisClientImplementation) MGet(ctx context.Context, keys ...string) ([]interface{}, error) {
return rci.common.MGet(ctx, keys...).Result()
}
func (rci *redisClientImplementation) Set(ctx context.Context, key string, value interface{}, expiration time.Duration) error {
return rci.common.Set(ctx, key, value, expiration).Err()
}
func (rci *redisClientImplementation) SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration) (bool, error) {
return rci.common.SetNX(ctx, key, value, expiration).Result()
}
func (rci *redisClientImplementation) TxPipeline() redisPipelineInterface {
return &redisPipelineImplementation{rci.common.TxPipeline()}
}
func (rci *redisClientImplementation) PoolStats() *redis.PoolStats {
return rci.client.PoolStats()
}
// Watch can only be called by the top-level redis Client. In particular, this means that
// *redis.TX cannot call Watch again - it only implements redis.Cmdable.
func (rci *redisClientImplementation) Watch(ctx context.Context, fn func(*redis.Tx) error, keys ...string) error {
return rci.client.Watch(ctx, fn, keys...)
}
// Implements needed redis pipeline methods for mocking purposes. See redis.Pipeliner for all available methods.
type redisPipelineInterface interface {
Exec(ctx context.Context) ([]redis.Cmder, error)
IncrBy(ctx context.Context, key string, value int64)
Set(ctx context.Context, key string, value interface{}, expiration time.Duration)
SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration)
}
type redisPipelineImplementation struct {
pipeline redis.Pipeliner
}
func (rpi *redisPipelineImplementation) Exec(ctx context.Context) ([]redis.Cmder, error) {
return rpi.pipeline.Exec(ctx)
}
func (rpi *redisPipelineImplementation) IncrBy(ctx context.Context, key string, value int64) {
rpi.pipeline.IncrBy(ctx, key, value)
}
func (rpi *redisPipelineImplementation) Set(ctx context.Context, key string, value interface{}, expiration time.Duration) {
rpi.pipeline.Set(ctx, key, value, expiration)
}
func (rpi *redisPipelineImplementation) SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration) {
rpi.pipeline.SetNX(ctx, key, value, expiration)
}
// Allows mocking of IntCmds returned by redis calls
type intCmdInterface interface {
Val() int64
}
type boolCmdInterface interface {
Result() (bool, error)
}
type Memorystore struct {
c context.Context
clients []redisClientInterface
tracer trace.Tracer
namespace string
keyHashFn func(key string, shardCount int) int
}
type memorystoreService struct {
connectFn redisAPIConnectorFn // if nil, use "real" implementation NewRedisAPIService; non-nil used for testing
mtx sync.Mutex
clients *[]redisClientInterface
addrs []string
addrLastErr error
addrDontRetryUntil time.Time
statReporterOnce sync.Once
}
var GlobalService memorystoreService
func InitializeRedisAddrs(addrs []string) {
if len(addrs) == 0 || LocalDebug {
return
}
GlobalService.mtx.Lock()
defer GlobalService.mtx.Unlock()
if !reflect.DeepEqual(GlobalService.addrs, addrs) {
GlobalService.addrs = addrs
GlobalService.clients = nil
}
}
const redisErrorDontRetryInterval = 5 * time.Second
func (ms *memorystoreService) getRedisAddr(c context.Context, appInfo AppengineInfo, loc CacheLocation, name CacheName, shards CacheShards) (_ []string, finalErr error) {
if ms.addrs != nil && ms.addrLastErr == nil {
return ms.addrs, nil
}
// Handle don't-retry interval: repeat prior error if too soon after failure
now := time.Now()
if ms.addrLastErr != nil && now.Before(ms.addrDontRetryUntil) {
return nil, fmt.Errorf("cached error (no retry for %s): %s", ms.addrDontRetryUntil.Sub(now), ms.addrLastErr)
}
defer func() {
if finalErr != nil {
ms.addrLastErr, ms.addrDontRetryUntil = finalErr, now.Add(redisErrorDontRetryInterval)
}
}()
connectFn := ms.connectFn
if connectFn == nil {
connectFn = NewRedisAPIService
}
client, err := connectFn(context.Background())
if err != nil {
return nil, err
}
defer client.Close()
projectId := appInfo.NativeProjectID()
if ms.addrs == nil {
ms.addrs = make([]string, shards)
}
for shard, existingAddr := range ms.addrs {
if existingAddr != "" {
continue // skip already-successful addresses
}
instance, err := client.GetInstance(c, &redispb.GetInstanceRequest{
Name: fmt.Sprintf("projects/%s/locations/%s/instances/%s-%d", projectId, loc, name, shard),
})
if err != nil {
finalErr = err
continue // skip failed address gets and keep trying to cache others (but consider the overall lookup failed)
}
ms.addrs[shard] = fmt.Sprintf("%s:%d", instance.Host, instance.Port)
}
if finalErr != nil {
return nil, finalErr
}
return ms.addrs, nil
}
func NewMemorystore(c context.Context, appInfo AppengineInfo, loc CacheLocation, name CacheName, shards CacheShards) (Memcache, error) {
return GlobalService.NewMemorystore(c, appInfo, loc, name, shards)
}
func NewRateLimitedMemorystore(c context.Context, appInfo AppengineInfo, loc CacheLocation, name CacheName, shards CacheShards, log Logging, createLimiters func(shard int, log Logging) redis.Limiter) (Memcache, error) {
return GlobalService.NewRateLimitedMemorystore(c, appInfo, loc, name, shards, log, createLimiters)
}
func (ms *memorystoreService) NewMemorystore(c context.Context, appInfo AppengineInfo, loc CacheLocation, name CacheName, shards CacheShards) (Memcache, error) {
return ms.NewRateLimitedMemorystore(c, appInfo, loc, name, shards, nil, nil)
}
func (ms *memorystoreService) NewRateLimitedMemorystore(c context.Context, appInfo AppengineInfo, loc CacheLocation, name CacheName, shards CacheShards, log Logging, createLimiter func(shard int, log Logging) redis.Limiter) (Memcache, error) {
// We don't use sync.Once here because we do actually want to execute the long path again in case of failures to initialize.
ourClients := ms.clients
if ourClients == nil {
ms.mtx.Lock()
defer ms.mtx.Unlock()
// Check again, because another goroutine could have beaten us here while we were checking the first time
if ms.clients == nil {
if shards == 0 {
panic("cannot use Memorystore with zero shards")
}
clients := make([]redisClientInterface, shards)
addrs, err := ms.getRedisAddr(c, appInfo, loc, name, shards)
if err != nil {
return nil, err
}
rateLimitersProvided := createLimiter != nil && log != nil
for i := range addrs {
ops := &redis.Options{
Addr: addrs[i],
Password: "",
DB: 0,
// Do not ever use internal retries; let the user of this
// library deal with retrying themselves if they see fit.
MaxRetries: -1,
// These are set by environment variable; see the init() function.
ConnMaxIdleTime: memorystoreIdleTimeout,
PoolSize: memorystorePoolSize,
PoolTimeout: memorystorePoolTimeout,
ReadTimeout: memorystoreReadTimeout,
// Workaround for CVE-2025-29923. We don't care about identifying our clients, anyways.
// See https://github.com/redis/go-redis/security/advisories/GHSA-92cp-5422-2mw7
// Note: future versions >= 9.7.3 fix the spelling of this parameter.
DisableIndentity: true,
}
if ops.PoolSize == 0 {
ops.PoolSize = 4 * runtime.GOMAXPROCS(0)
}
if rateLimitersProvided {
ops.Limiter = createLimiter(i, log)
}
shard := i
ipaddr := addrs[i]
ops.OnConnect = func(ctx context.Context, cn *redis.Conn) error {
log := NewStackdriverLogging(ctx)
log.Debugf("memorystore: created new connection to shard %d (%s)", shard, ipaddr)
return nil
}
client := redis.NewClient(ops)
clients[i] = &redisClientImplementation{client, client}
}
ms.clients = &clients
}
ourClients = ms.clients
}
statInterval := metrics.GetMetricsRecordingInterval()
if statInterval > 0 {
ms.statReporterOnce.Do(func() {
fmt.Fprintf(os.Stderr, "[memorystoreService] stat reporter starting (reporting every %s)\n", statInterval)
sigCh := make(chan os.Signal, 1)
signal.Notify(sigCh, os.Interrupt)
go func() {
ticker := time.NewTicker(statInterval)
defer func() {
ticker.Stop()
}()
for {
select {
case <-ticker.C:
ms.logPoolStats()
case <-sigCh:
fmt.Fprintln(os.Stderr, "[memorystoreService] interrupt received, stopping stat reporter")
return
}
}
}()
})
}
return Memorystore{c, *ourClients, otel.GetTracerProvider().Tracer("Memorystore"), "", defaultKeyHashFn}, nil
}
func (ms *memorystoreService) logPoolStats() {
ms.mtx.Lock()
defer ms.mtx.Unlock()
if ms.clients == nil {
return
}
for i, client := range *ms.clients {
pstats := client.PoolStats()
// These metrics are all for the same connection shard
mctx, err := tag.New(context.Background(), tag.Insert(metrics.KeyConnectionShard, strconv.Itoa(i)))
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to create context with tag: "+err.Error())
continue
}
// Pool usage stats
metrics.RecordWithTagName(mctx, metrics.MMemoryStoreConnectionPoolUsage.M(int64(pstats.Hits)),
metrics.KeyPoolUsageResult, metrics.ConnectionPoolUsageResultHit)
metrics.RecordWithTagName(mctx, metrics.MMemoryStoreConnectionPoolUsage.M(int64(pstats.Misses)),
metrics.KeyPoolUsageResult, metrics.ConnectionPoolUsageResultMiss)
metrics.RecordWithTagName(mctx, metrics.MMemoryStoreConnectionPoolUsage.M(int64(pstats.Timeouts)),
metrics.KeyPoolUsageResult, metrics.ConnectionPoolUsageResultTimeout)
// Connection state stats
metrics.RecordWithTagName(mctx, metrics.MMemoryStoreConnectionPoolConnections.M(int64(pstats.TotalConns-pstats.IdleConns)),
metrics.KeyPoolConnState, metrics.ConnectionPoolConnectionStateActive)
metrics.RecordWithTagName(mctx, metrics.MMemoryStoreConnectionPoolConnections.M(int64(pstats.IdleConns)),
metrics.KeyPoolConnState, metrics.ConnectionPoolConnectionStateIdle)
}
}
func (ms Memorystore) shardedNamespacedKeysForItems(items []*CacheItem) (namespacedKeys [][]string, originalPositions map[string]int, singleShard int) {
keys := make([]string, len(items))
for i, item := range items {
keys[i] = item.Key
}
return ms.shardedNamespacedKeys(keys)
}
func (ms Memorystore) shardedNamespacedKeys(keys []string) (namespacedKeys [][]string, originalPositions map[string]int, singleShard int) {
namespacedKeys = make([][]string, len(ms.clients))
originalPositions = make(map[string]int, len(keys))
singleShard = -1
for i, key := range keys {
namespacedKey, shard := ms.namespacedKeyAndShard(key)
if i > 0 && singleShard != shard {
singleShard = -1
} else {
singleShard = shard
}
namespacedKeys[shard] = append(namespacedKeys[shard], namespacedKey)
originalPositions[namespacedKey] = i
}
return namespacedKeys, originalPositions, singleShard
}
func (ms Memorystore) namespacedKeyAndShard(key string) (string, int) {
if key == "" {
panic("redis: blank key")
}
namespacedKey := ms.namespace + ":" + key
shard := ms.keyHashFn(namespacedKey, len(ms.clients))
return namespacedKey, shard
}
func (ms Memorystore) Add(item *CacheItem) error {
fullKey, shard := ms.namespacedKeyAndShard(item.Key)
c, span := ms.tracer.Start(ms.c, traceMemorystoreAdd)
defer span.End()
span.SetAttributes(labelKey(fullKey))
span.SetAttributes(labelShard(int64(shard)))
if added, err := ms.clients[shard].SetNX(c, fullKey, item.Value, item.Expiration); err != nil {
return err
} else if !added {
return CacheErrNotStored
}
return nil
}
func (ms Memorystore) AddMulti(items []*CacheItem) error {
c, span := ms.tracer.Start(ms.c, traceMemorystoreAddMulti)
defer span.End()
span.SetAttributes(labelNumKeys(int64(len(items))))
addMultiForShard := func(shard int, itemIndices map[string]int, shardKeys []string) ([]redis.Cmder, error) {
if len(shardKeys) == 0 {
return nil, nil
}
c, span := ms.tracer.Start(c, traceMemorystoreAddMultiShard)
defer span.End()
span.SetAttributes(labelFirstKey(shardKeys[0]))
span.SetAttributes(labelNumKeys(int64(len(shardKeys))))
span.SetAttributes(labelShard(int64(shard)))
pipe := ms.clients[shard].TxPipeline()
for _, key := range shardKeys {
item := items[itemIndices[key]]
pipe.SetNX(c, key, item.Value, item.Expiration)
}
return pipe.Exec(c)
}
handleReturn := func(shard int, itemIndices map[string]int, shardKeys []string, shardResults []redis.Cmder, errList []error) bool {
haveErrors := false
for i, result := range shardResults {
if err := result.Err(); err != nil {
errList[itemIndices[shardKeys[i]]] = err
haveErrors = true
} else if added, _ := result.(boolCmdInterface).Result(); !added {
errList[itemIndices[shardKeys[i]]] = CacheErrNotStored
haveErrors = true
}
}
return haveErrors
}
namespacedKeys, itemIndices, singleShard := ms.shardedNamespacedKeysForItems(items)
errList := make(MultiError, len(items))
if singleShard >= 0 {
results, err := addMultiForShard(singleShard, itemIndices, namespacedKeys[singleShard])
if err != nil {
return err
}
if handleReturn(singleShard, itemIndices, namespacedKeys[singleShard], results, errList) {
return errList
}
return nil
}
results := make([][]redis.Cmder, len(ms.clients))
wg := sync.WaitGroup{}
errs := make(chan error, len(ms.clients))
for shard := 0; shard < len(ms.clients); shard++ {
if len(namespacedKeys[shard]) == 0 {
continue
}
shard := shard
wg.Add(1)
go func() {
defer wg.Done()
shardKeys := namespacedKeys[shard]
res, err := addMultiForShard(shard, itemIndices, shardKeys)
if err != nil {
errs <- err
}
results[shard] = res
}()
}
wg.Wait()
select {
case err := <-errs:
return err
default:
}
haveErrors := false
for shard, shardResults := range results {
newErrors := handleReturn(shard, itemIndices, namespacedKeys[shard], shardResults, errList)
haveErrors = haveErrors || newErrors
}
if haveErrors {
return errList
}
return nil
}
func (ms Memorystore) CompareAndSwap(item *CacheItem) error {
fullKey, shard := ms.namespacedKeyAndShard(item.Key)
c, span := ms.tracer.Start(ms.c, traceMemorystoreCAS)
defer span.End()
span.SetAttributes(labelFirstKey(fullKey))
span.SetAttributes(labelShard(int64(shard)))
if err := ms.clients[shard].Watch(c, func(tx *redis.Tx) error {
// Watch is an optimistic lock
txClient := &redisClientImplementation{tx, nil}
return ms.doCompareAndSwap(c, item, txClient, fullKey)
}, fullKey); err == redis.TxFailedErr {
return CacheErrCASConflict
} else {
return err
}
}
func (ms Memorystore) doCompareAndSwap(c context.Context, item *CacheItem, tx redisCommonInterface, fullKey string) error {
val, err := tx.Get(c, fullKey)
if err == redis.Nil {
// Does item exist? If not, can't swap it
return CacheErrNotStored
} else if err != nil {
return err
} else if !bytes.Equal(val, item.valueOnLastGet) {
// Did something change before we entered the transaction?
// If so, already too late to swap
return CacheErrCASConflict
}
// Finally, attempt the swap. This will fail if something else beats us there, since we're in a transaction
// This extends the TTL of the item
// The set will succeed even if the item has expired since we entered WATCH
pipe := tx.TxPipeline()
pipe.Set(c, fullKey, item.Value, item.Expiration)
_, err = pipe.Exec(c)
return err
}
// This (and DeleteMulti) doesn't return ErrCacheMiss if the key doesn't exist
// However, every caller of this never used that error for anything useful
func (ms Memorystore) Delete(key string) error {
return ms.DeleteMulti([]string{key})
}
func (ms Memorystore) DeleteMulti(keys []string) error {
c, span := ms.tracer.Start(ms.c, traceMemorystoreDeleteMulti)
defer span.End()
span.SetAttributes(labelNumKeys(int64(len(keys))))
namespacedKeys, _, _ := ms.shardedNamespacedKeys(keys)
errList := make(MultiError, 0, len(ms.clients))
haveErrors := false
for i, client := range ms.clients {
shardKeys := namespacedKeys[i]
if len(shardKeys) == 0 {
continue
}
func() {
c, span := ms.tracer.Start(c, traceMemorystoreDeleteMultiShard)
defer span.End()
span.SetAttributes(labelFirstKey(shardKeys[0]))
span.SetAttributes(labelNumKeys(int64(len(shardKeys))))
span.SetAttributes(labelShard(int64(i)))
if err := client.Del(c, shardKeys...); err != nil {
errList = append(errList, err)
haveErrors = true
}
}()
}
if haveErrors {
return errList
}
return nil
}
func (ms Memorystore) Flush() error {
return errors.New("please don't call this on memorystore")
/*
Leaving this here to show how you implement flush. It is currently disabled because flush brings down memorystore for the duration of this operation.
errs := make([]error, 0, len(ms.clients))
for _, client := range ms.clients {
if err := client.FlushAll(); err != nil {
errs = append(errs, err)
}
}
if len(errs) == 0 {
return nil
} else {
return MultiError(errs)
}
*/
}
func (ms Memorystore) FlushShard(shard int) error {
if shard < 0 || shard >= len(ms.clients) {
return fmt.Errorf("shard must be in range [0, %d), got %d", len(ms.clients), shard)
}
return ms.clients[shard].FlushAllAsync(ms.c)
}
func (ms Memorystore) Get(key string) (*CacheItem, error) {
c, span := ms.tracer.Start(ms.c, traceMemorystoreGet)
defer span.End()
fullKey, shard := ms.namespacedKeyAndShard(key)
span.SetAttributes(labelKey(fullKey))
span.SetAttributes(labelShard(int64(shard)))
if val, err := ms.clients[shard].Get(c, fullKey); err == redis.Nil {
return nil, ErrCacheMiss
} else if err != nil {
return nil, err
} else {
valCopy := make([]byte, len(val))
copy(valCopy, val)
return &CacheItem{
Key: key,
Value: val,
valueOnLastGet: valCopy,
}, nil
}
}
func (ms Memorystore) GetMulti(keys []string) (map[string]*CacheItem, error) {
c, span := ms.tracer.Start(ms.c, traceMemorystoreGetMulti)
defer span.End()
span.SetAttributes(labelNumKeys(int64(len(keys))))
getMultiForShard := func(shard int, itemIndices map[string]int, shardKeys []string) ([]interface{}, error) {
if len(shardKeys) == 0 {
return nil, nil
}
c, span := ms.tracer.Start(c, traceMemorystoreGetMultiShard)
defer span.End()
span.SetAttributes(labelFirstKey(shardKeys[0]))
span.SetAttributes(labelNumKeys(int64(len(shardKeys))))
span.SetAttributes(labelShard(int64(shard)))
return ms.clients[shard].MGet(c, shardKeys...)
}
handleReturn := func(shard int, itemIndices map[string]int, shardKeys []string, shardVals []interface{}, results map[string]*CacheItem) {
for i, val := range shardVals {
if val == nil {
// Not found
continue
}
valBytes := ms.convertToByteSlice(val)
valCopy := make([]byte, len(valBytes))
copy(valCopy, valBytes)
key := keys[itemIndices[shardKeys[i]]]
results[key] = &CacheItem{
Key: key,
Value: valBytes,
valueOnLastGet: valCopy,
}
}
}
namespacedKeys, keyIndices, singleShard := ms.shardedNamespacedKeys(keys)
// Fast path (no goroutine) if only one shard is involved
if singleShard >= 0 {
results := make(map[string]*CacheItem, len(keys))
vals, err := getMultiForShard(singleShard, keyIndices, namespacedKeys[singleShard])
if err != nil {
return nil, err
}
handleReturn(singleShard, keyIndices, namespacedKeys[singleShard], vals, results)
return results, nil
}
returnVals := make([][]interface{}, len(ms.clients))
wg := sync.WaitGroup{}
haveErrors := false
finalErr := make(MultiError, len(ms.clients))
for shard := 0; shard < len(ms.clients); shard++ {
shardKeys := namespacedKeys[shard]
if len(shardKeys) == 0 {
continue
}
wg.Add(1)
shard := shard
go func() {
defer wg.Done()
vals, err := getMultiForShard(shard, keyIndices, shardKeys)
returnVals[shard] = vals
if err != nil {
finalErr[shard] = err
haveErrors = true
}
}()
}
wg.Wait()
results := make(map[string]*CacheItem, len(keys))
for shard, shardVals := range returnVals {
handleReturn(shard, keyIndices, namespacedKeys[shard], shardVals, results)
}
if haveErrors {
return results, finalErr
} else {
return results, nil
}
}
func (ms Memorystore) convertToByteSlice(v interface{}) []byte {
switch v.(type) {
case string:
return []byte(v.(string))
case []byte:
return v.([]byte)
default:
panic(fmt.Sprintf("unsupported type for convert: %T, %+v", v, v))
}
}
func (ms Memorystore) Increment(key string, amount int64, initialValue uint64, initialExpires time.Duration) (incr uint64, err error) {
fullKey, shard := ms.namespacedKeyAndShard(key)
c, span := ms.tracer.Start(ms.c, traceMemorystoreIncr)
defer span.End()
span.SetAttributes(labelKey(fullKey))
span.SetAttributes(labelShard(int64(shard)))
pipe := ms.clients[shard].TxPipeline()
pipe.SetNX(c, fullKey, initialValue, initialExpires)
pipe.IncrBy(c, fullKey, amount)
var res []redis.Cmder
if res, err = pipe.Exec(c); err == nil {
incr = uint64(res[1].(intCmdInterface).Val())
}
return incr, err
}
func (ms Memorystore) IncrementExisting(key string, amount int64) (uint64, error) {
fullKey, shard := ms.namespacedKeyAndShard(key)
c, span := ms.tracer.Start(ms.c, traceMemorystoreIncrExisting)
defer span.End()
span.SetAttributes(labelKey(fullKey))
span.SetAttributes(labelShard(int64(shard)))
if res, err := ms.clients[shard].Exists(c, fullKey); err == nil && res == 1 {
val, err := ms.clients[shard].IncrBy(c, fullKey, amount)
return uint64(val), err
} else if err != nil {
return 0, err
} else {
return 0, ErrCacheMiss
}
}
func (ms Memorystore) Set(item *CacheItem) error {
fullKey, shard := ms.namespacedKeyAndShard(item.Key)
c, span := ms.tracer.Start(ms.c, traceMemorystoreSet)
defer span.End()
span.SetAttributes(labelKey(fullKey))
span.SetAttributes(labelShard(int64(shard)))
return ms.clients[shard].Set(c, fullKey, item.Value, item.Expiration)
}
func (ms Memorystore) SetMulti(items []*CacheItem) error {
c, span := ms.tracer.Start(ms.c, traceMemorystoreSetMulti)
defer span.End()
span.SetAttributes(labelNumKeys(int64(len(items))))
setMultiForShard := func(shard int, itemIndices map[string]int, shardKeys []string) error {
if len(shardKeys) == 0 {
return nil
}
c, span := ms.tracer.Start(c, traceMemorystoreSetMultiShard)
defer span.End()
span.SetAttributes(labelFirstKey(shardKeys[0]))
span.SetAttributes(labelNumKeys(int64(len(shardKeys))))
span.SetAttributes(labelShard(int64(shard)))
pipe := ms.clients[shard].TxPipeline()
for i, key := range shardKeys {
item := items[itemIndices[shardKeys[i]]]
pipe.Set(c, key, item.Value, item.Expiration)
}
_, err := pipe.Exec(c)
if err != nil {
return err
}
return nil
}
namespacedKeys, itemIndices, singleShard := ms.shardedNamespacedKeysForItems(items)
if singleShard >= 0 {
if err := setMultiForShard(singleShard, itemIndices, namespacedKeys[singleShard]); err != nil {
return err
}
return nil
}
errs := make(chan error, len(ms.clients))
wg := sync.WaitGroup{}
for shard := 0; shard < len(ms.clients); shard++ {
if len(namespacedKeys[shard]) == 0 {
continue
}
shard := shard
wg.Add(1)
go func() {
defer wg.Done()
shardKeys := namespacedKeys[shard]
if err := setMultiForShard(shard, itemIndices, shardKeys); err != nil {
errs <- err
}
}()
}
wg.Wait()
select {
case err := <-errs:
return err
default:
return nil
}
}
func (ms Memorystore) Namespace(ns string) Memcache {
return Memorystore{ms.c, ms.clients, ms.tracer, ns, ms.keyHashFn}
}
func defaultKeyHashFn(key string, shardCount int) int {
return int(xxhash.Sum64String(key) % uint64(shardCount))
}
const (
envMemorystoreIdleTimeoutMs = "memorystore_idle_timeout_ms"
envMemorystorePoolSize = "memorystore_pool_size"
envMemorystorePoolTimeoutMs = "memorystore_pool_timeout_ms"
envMemorystoreReadTimeoutMs = "memorystore_read_timeout_ms"
)
var (
memorystoreIdleTimeout time.Duration
memorystorePoolSize int
memorystorePoolTimeout time.Duration
memorystoreReadTimeout time.Duration
)
func init() {
initLog := NewStdLogger(os.Stdout)
readTimeoutMsStr := os.Getenv(envMemorystoreReadTimeoutMs)
if readTimeoutMsStr != "" {
timeoutMs, err := strconv.ParseInt(readTimeoutMsStr, 10, 64)
if err != nil {
initLog.Errorf("Failed to parse '%s' value: '%s': %s\n",
envMemorystoreReadTimeoutMs, readTimeoutMsStr, err)
} else if timeoutMs < 1 {
initLog.Errorf("'%s' must be a non-zero non-negative integer\n",
envMemorystoreReadTimeoutMs)
} else {
memorystoreReadTimeout = time.Duration(timeoutMs) * time.Millisecond
}
}
memorystorePoolSizeStr := os.Getenv(envMemorystorePoolSize)
if memorystorePoolSizeStr != "" {
poolSize, err := strconv.ParseInt(memorystorePoolSizeStr, 10, 64)
if err != nil {
initLog.Errorf("Failed to parse '%s' value: '%s': %s\n",
envMemorystorePoolSize, memorystorePoolSizeStr, err)
} else if poolSize < 1 {
initLog.Errorf("'%s' must be a non-zero non-negative integer\n",
envMemorystorePoolSize)
} else {
memorystorePoolSize = int(poolSize)
}
}
poolTimeoutStr := os.Getenv(envMemorystorePoolTimeoutMs)
if poolTimeoutStr != "" {
timeoutMs, err := strconv.ParseInt(poolTimeoutStr, 10, 64)
if err != nil {
initLog.Errorf("Failed to parse '%s' value: '%s': %s\n",
envMemorystorePoolTimeoutMs, poolTimeoutStr, err)
} else if timeoutMs < 1 {
initLog.Errorf("'%s' must be a non-zero non-negative integer\n",
envMemorystorePoolTimeoutMs)
} else {
memorystorePoolTimeout = time.Duration(timeoutMs) * time.Millisecond
}
}
// From https://cloud.google.com/memorystore/docs/redis/redis-configs:
// The default idle timeout on the managed Redis servers used by Memorystore
// is 0, which is to say the connections are _never_ disconnected by the server.
// The go-redis documentation says that any client-specified value should always
// be less than the Redis server's value, or disabled.
//
// To disable idle connection reaping, specify -1.
idleTimeoutStr := os.Getenv(envMemorystoreIdleTimeoutMs)
if idleTimeoutStr != "" {
timeoutMs, err := strconv.ParseInt(idleTimeoutStr, 10, 64)
if err != nil {
initLog.Errorf("Failed to parse '%s' value: '%s': %s\n",
envMemorystoreIdleTimeoutMs, idleTimeoutStr, err)
} else if timeoutMs == -1 {
memorystoreIdleTimeout = -1
} else if timeoutMs < 1 {
initLog.Errorf("'%s' must be either a non-zero non-negative integer, or -1 to disable idle timeout\n",
envMemorystoreIdleTimeoutMs)
} else {
memorystoreIdleTimeout = time.Duration(timeoutMs) * time.Millisecond
}
}
if LocalDebug {
initLog.Infof("Connecting redis to localhost")
clients := make([]redisClientInterface, 1)
ops := &redis.Options{
Addr: "127.0.0.1:6379",
Password: "",
DB: 0,
// Do not ever use internal retries; let the user of this
// library deal with retrying themselves if they see fit.
MaxRetries: -1,
ConnMaxIdleTime: memorystoreIdleTimeout,
PoolSize: memorystorePoolSize,
PoolTimeout: memorystorePoolTimeout,
ReadTimeout: memorystoreReadTimeout,
}