-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.go
532 lines (448 loc) · 11.4 KB
/
table.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
package nitecache
import (
"context"
"errors"
"fmt"
"github.com/MysteriousPotato/nitecache/inmem"
"strings"
"time"
"github.com/MysteriousPotato/nitecache/servicepb"
"golang.org/x/sync/singleflight"
)
var (
ErrRPCNotFound = errors.New("RPC not found")
ErrKeyNotFound = errors.New("key not found")
)
// Procedure defines the type used for registering RPCs through [TableBuilder.WithProcedure].
type Procedure[T any] func(ctx context.Context, v T, args []byte) (T, time.Duration, error)
type (
BatchEvictionErrs []batchEvictionErr
batchEvictionErr struct {
keys []string
err error
}
)
type Table[T any] struct {
name string
store *inmem.Store[string, []byte]
hotStore *inmem.Store[string, []byte]
codec Codec[T]
getSF *singleflight.Group
evictSF *singleflight.Group
procedures map[string]Procedure[T]
metrics *metrics
cache *Cache
autofill bool
}
type getResponse struct {
value inmem.Item[[]byte]
hit bool
}
func (t *Table[T]) Get(ctx context.Context, key string) (T, error) {
if t.isZero() {
var empty T
return empty, ErrCacheDestroyed
}
ownerID, err := t.cache.ring.GetOwner(key)
if err != nil {
return t.getEmptyValue(), err
}
var item inmem.Item[[]byte]
var hit bool
if ownerID == t.cache.self.ID {
item, hit, err = t.getLocally(ctx, key)
} else {
client, err := t.cache.getClient(ownerID)
if err != nil {
return t.getEmptyValue(), err
}
item, hit, err = t.getFromPeer(ctx, key, client)
if err != nil {
return t.getEmptyValue(), err
}
}
if err != nil {
return t.getEmptyValue(), err
}
if !hit && !t.autofill || item.IsExpired() {
return t.getEmptyValue(), ErrKeyNotFound
}
var v T
if err := t.codec.Decode(item.Value, &v); err != nil {
return t.getEmptyValue(), err
}
return v, nil
}
func (t *Table[T]) Put(ctx context.Context, key string, value T, ttl time.Duration) error {
if t.isZero() {
return ErrCacheDestroyed
}
ownerID, err := t.cache.ring.GetOwner(key)
if err != nil {
return err
}
b, err := t.codec.Encode(value)
if err != nil {
return err
}
if ownerID == t.cache.self.ID {
if err := t.putLocally(key, t.store.NewItem(b, ttl)); err != nil {
return err
}
} else {
client, err := t.cache.getClient(ownerID)
if err != nil {
return err
}
if err := t.putFromPeer(ctx, key, b, ttl, client); err != nil {
return err
}
}
return nil
}
func (t *Table[T]) Evict(ctx context.Context, key string) error {
if t.isZero() {
return ErrCacheDestroyed
}
ownerID, err := t.cache.ring.GetOwner(key)
if err != nil {
return err
}
if ownerID == t.cache.self.ID {
if err := t.evictLocally(key); err != nil {
return err
}
} else {
client, err := t.cache.getClient(ownerID)
if err != nil {
return err
}
if err := t.evictFromPeer(ctx, key, client); err != nil {
return err
}
}
return nil
}
// EvictAll attempts to remove all entries from the Table for the given keys.
//
// Keys owned by the same client are batched together for efficiency.
//
// After the operation, a BatchEvictionErrs detailing which keys (if any) failed to be evicted can be retrieved when checking the returned error.
// Example:
//
// if errs, ok := err.(nitecache.BatchEvictionErrs); ok {
// // Note that keys that AffectedKeys may return keys that were actually evicted successfully.
// keysThatFailed := errs.AffectedKeys()
// }
func (t *Table[T]) EvictAll(ctx context.Context, keys []string) error {
if t.isZero() {
return ErrCacheDestroyed
}
type clientKeys struct {
client *client
keys []string
}
var selfKeys []string
clientKeysMap := map[string]*clientKeys{}
for _, key := range keys {
ownerID, err := t.cache.ring.GetOwner(key)
if err != nil {
return err
}
if ownerID == t.cache.self.ID {
selfKeys = append(selfKeys, key)
continue
}
if _, ok := clientKeysMap[ownerID]; !ok {
c, err := t.cache.getClient(ownerID)
if err != nil {
return err
}
clientKeysMap[ownerID] = &clientKeys{
client: c,
keys: []string{key},
}
continue
}
clientKeysMap[ownerID].keys = append(clientKeysMap[ownerID].keys, key)
}
t.evictAllLocally(selfKeys)
var errs BatchEvictionErrs
for _, c := range clientKeysMap {
if err := t.evictAllFromPeer(ctx, c.keys, c.client); err != nil {
errs = append(errs, batchEvictionErr{
keys: c.keys,
err: err,
})
}
}
if errs != nil {
return errs
}
return nil
}
// Call calls an RPC previously registered through [TableBuilder.WithProcedure] on the owner node to update the value for the given key.
//
// Call acquires a lock exclusive to the given key until the RPC has finished executing.
func (t *Table[T]) Call(ctx context.Context, key, function string, args []byte) (T, error) {
if t.isZero() {
var empty T
return empty, ErrCacheDestroyed
}
ownerID, err := t.cache.ring.GetOwner(key)
if err != nil {
return t.getEmptyValue(), err
}
var item inmem.Item[[]byte]
if ownerID == t.cache.self.ID {
item, err = t.callLocally(ctx, key, function, args)
if err != nil {
return t.getEmptyValue(), err
}
} else {
client, err := t.cache.getClient(ownerID)
if err != nil {
return t.getEmptyValue(), err
}
item, err = t.callFromPeer(ctx, key, function, args, client)
if err != nil {
return t.getEmptyValue(), err
}
}
if item.Value == nil {
return t.getEmptyValue(), nil
}
if item.IsExpired() {
return t.getEmptyValue(), ErrKeyNotFound
}
var v T
if err := t.codec.Decode(item.Value, &v); err != nil {
return t.getEmptyValue(), err
}
return v, err
}
// GetHot looks up local cache if the current node is the owner, otherwise looks up hot cache.
//
// GetHot does not call the getter to autofill cache, does not increment metrics and does not affect the main cache's LFU/LRU (if used).
func (t *Table[T]) GetHot(key string) (T, error) {
if t.isZero() {
var empty T
return empty, ErrCacheDestroyed
}
ownerID, err := t.cache.ring.GetOwner(key)
if err != nil {
return t.getEmptyValue(), err
}
var item inmem.Item[[]byte]
var hit bool
if ownerID == t.cache.self.ID {
item, hit, err = t.store.Get(context.Background(), key)
if err != nil {
return t.getEmptyValue(), err
}
} else {
item, hit, err = t.getFromHotCache(key)
}
if err != nil {
return t.getEmptyValue(), err
}
if !hit || item.IsExpired() {
return t.getEmptyValue(), ErrKeyNotFound
}
var v T
if err := t.codec.Decode(item.Value, &v); err != nil {
return t.getEmptyValue(), err
}
return v, nil
}
// GetMetrics returns a copy of the current table Metrics. For global cache Metrics, refer to [Cache.GetMetrics]
func (t *Table[T]) GetMetrics() (Metrics, error) {
if t.isZero() {
return Metrics{}, ErrCacheDestroyed
}
return t.metrics.getCopy(), nil
}
func (t *Table[T]) getLocally(ctx context.Context, key string) (inmem.Item[[]byte], bool, error) {
incGet(t.metrics, t.cache.metrics)
sfRes, err, _ := t.getSF.Do(key, func() (any, error) {
item, hit, err := t.store.Get(ctx, key)
if !hit {
incMiss(t.metrics, t.cache.metrics)
}
return getResponse{
value: item,
hit: hit,
}, err
})
res := sfRes.(getResponse)
return res.value, res.hit, err
}
func (t *Table[T]) putLocally(key string, item inmem.Item[[]byte]) error {
incPut(t.metrics, t.cache.metrics)
t.store.Put(key, item)
return nil
}
func (t *Table[T]) evictLocally(key string) error {
incEvict(1, t.metrics, t.cache.metrics)
_, _, _ = t.evictSF.Do(key, func() (any, error) {
t.store.Evict(key)
return nil, nil
})
return nil
}
func (t *Table[T]) evictAllLocally(keys []string) {
incEvict(int64(len(keys)), t.metrics, t.cache.metrics)
t.store.EvictAll(keys)
}
func (t *Table[T]) callLocally(ctx context.Context, key, procedure string, args []byte) (inmem.Item[[]byte], error) {
incCalls(procedure, t.metrics, t.cache.metrics)
// Can be access concurrently since no write is possible at this point
fn, ok := t.procedures[procedure]
if !ok {
return inmem.Item[[]byte]{}, ErrRPCNotFound
}
return t.store.Update(ctx, key, args, func(ctx context.Context, value []byte, args []byte) ([]byte, time.Duration, error) {
var v T
if value != nil {
if err := t.codec.Decode(value, &v); err != nil {
return nil, 0, err
}
}
newValue, ttl, err := fn(ctx, v, args)
if err != nil {
return nil, 0, err
}
b, err := t.codec.Encode(newValue)
if err != nil {
return nil, 0, err
}
return b, ttl, nil
})
}
func (t *Table[T]) getFromPeer(ctx context.Context, key string, owner *client) (inmem.Item[[]byte], bool, error) {
sfRes, err, _ := t.getSF.Do(key, func() (any, error) {
res, err := owner.Get(ctx, &servicepb.GetRequest{
Table: t.name,
Key: key,
})
if err != nil {
return getResponse{}, err
}
item := inmem.Item[[]byte]{
Expire: time.UnixMicro(res.Item.Expire),
Value: res.Item.Value,
}
if t.hotStore != nil {
t.hotStore.Put(key, item)
}
return getResponse{
value: item,
hit: res.Hit,
}, nil
})
res := sfRes.(getResponse)
return res.value, res.hit, err
}
func (t *Table[T]) putFromPeer(ctx context.Context, key string, b []byte, ttl time.Duration, owner *client) error {
item := t.store.NewItem(b, ttl)
if _, err := owner.Put(ctx, &servicepb.PutRequest{
Table: t.name,
Key: key,
Item: &servicepb.Item{
Expire: item.Expire.UnixMicro(),
Value: item.Value,
},
}); err != nil {
return err
}
if t.hotStore != nil {
t.hotStore.Put(key, item)
}
return nil
}
func (t *Table[T]) evictFromPeer(ctx context.Context, key string, owner *client) error {
_, err, _ := t.evictSF.Do(key, func() (any, error) {
if _, err := owner.Evict(ctx, &servicepb.EvictRequest{
Table: t.name,
Key: key,
}); err != nil {
return nil, err
}
if t.hotStore != nil {
t.hotStore.Evict(key)
}
return nil, nil
})
return err
}
func (t *Table[T]) evictAllFromPeer(ctx context.Context, keys []string, owner *client) error {
if _, err := owner.EvictAll(ctx, &servicepb.EvictAllRequest{
Table: t.name,
Keys: keys,
}); err != nil {
return err
}
if t.hotStore != nil {
t.hotStore.EvictAll(keys)
}
return nil
}
func (t *Table[T]) callFromPeer(
ctx context.Context,
key, procedure string,
args []byte,
owner *client,
) (inmem.Item[[]byte], error) {
res, err := owner.Call(ctx, &servicepb.CallRequest{
Table: t.name,
Key: key,
Procedure: procedure,
Args: args,
})
if err != nil {
return inmem.Item[[]byte]{}, err
}
item := inmem.Item[[]byte]{
Expire: time.UnixMicro(res.Item.Expire),
Value: res.Item.Value,
}
if t.hotStore != nil {
t.hotStore.Put(key, item)
}
return item, nil
}
func (t *Table[T]) getFromHotCache(key string) (inmem.Item[[]byte], bool, error) {
if t.hotStore == nil {
return inmem.Item[[]byte]{}, false, fmt.Errorf("hot cache not enabled")
}
return t.hotStore.Get(context.Background(), key)
}
func (t *Table[T]) tearDown() {
if t != nil {
*t = Table[T]{}
}
}
func (t *Table[T]) isZero() bool {
return t == nil || t.cache == nil
}
func (t *Table[T]) getEmptyValue() T {
var v T
return v
}
func (b BatchEvictionErrs) Error() string {
var errs []string
for _, err := range b {
errs = append(errs, fmt.Sprintf("failed to evict keys %v: %v", err.keys, err.err))
}
return strings.Join(errs, ",")
}
// AffectedKeys returns a list of keys owned by clients who returned an error.
//
// As a result, the list may contain keys that were successfully evicted.
func (b BatchEvictionErrs) AffectedKeys() []string {
var keys []string
for _, err := range b {
keys = append(keys, err.keys...)
}
return keys
}