-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
broker_memory.go
495 lines (439 loc) · 13 KB
/
broker_memory.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
package centrifuge
import (
"container/heap"
"context"
"fmt"
"sync"
"time"
"github.com/centrifugal/centrifuge/internal/memstream"
"github.com/centrifugal/centrifuge/internal/priority"
)
// MemoryBroker is builtin default Broker which allows running Centrifuge-based
// server without any external broker. All data managed inside process memory.
//
// With this Broker you can only run single Centrifuge node. If you need to scale
// you should consider using another Broker implementation instead – for example
// RedisBroker.
//
// Running single node can be sufficient for many use cases especially when you
// need maximum performance and not too many online clients. Consider configuring
// your load balancer to have one backup Centrifuge node for HA in this case.
type MemoryBroker struct {
node *Node
historyHub *historyHub
eventHandler BrokerEventHandler
// pubLocks synchronize access to publishing. We have to sync publish
// to handle publications in the order of offset to prevent InsufficientState
// errors.
// TODO: maybe replace with sharded pool of workers with buffered channels.
pubLocks map[int]*sync.Mutex
closeOnce sync.Once
closeCh chan struct{}
nextExpireCheck int64
resultExpireQueue priority.Queue
resultCache map[string]StreamPosition
resultCacheMu sync.RWMutex
}
var _ Broker = (*MemoryBroker)(nil)
// MemoryBrokerConfig is a memory broker config.
type MemoryBrokerConfig struct{}
const numPubLocks = 4096
const defaultIdempotentResultExpireSeconds = 300
// NewMemoryBroker initializes MemoryBroker.
func NewMemoryBroker(n *Node, _ MemoryBrokerConfig) (*MemoryBroker, error) {
pubLocks := make(map[int]*sync.Mutex, numPubLocks)
for i := 0; i < numPubLocks; i++ {
pubLocks[i] = &sync.Mutex{}
}
closeCh := make(chan struct{})
b := &MemoryBroker{
node: n,
historyHub: newHistoryHub(n.config.HistoryMetaTTL, closeCh),
pubLocks: pubLocks,
closeCh: closeCh,
resultCache: map[string]StreamPosition{},
}
return b, nil
}
// Run runs memory broker.
func (b *MemoryBroker) Run(h BrokerEventHandler) error {
b.eventHandler = h
go b.expireResultCache()
b.historyHub.runCleanups()
return nil
}
// Close is noop for now.
func (b *MemoryBroker) Close(_ context.Context) error {
b.closeOnce.Do(func() {
close(b.closeCh)
})
return nil
}
func (b *MemoryBroker) pubLock(ch string) *sync.Mutex {
return b.pubLocks[index(ch, numPubLocks)]
}
// Publish adds message into history hub and calls node method to handle message.
// We don't have any PUB/SUB here as Memory Engine is single node only.
func (b *MemoryBroker) Publish(ch string, data []byte, opts PublishOptions) (StreamPosition, bool, error) {
mu := b.pubLock(ch)
mu.Lock()
defer mu.Unlock()
if opts.IdempotencyKey != "" {
if res, ok := b.getResultFromCache(ch, opts.IdempotencyKey); ok {
return res, true, nil
}
}
pub := &Publication{
Data: data,
Info: opts.ClientInfo,
Tags: opts.Tags,
Time: time.Now().UnixMilli(),
}
var prevPub *Publication
if opts.HistorySize > 0 && opts.HistoryTTL > 0 {
var err error
var streamTop StreamPosition
streamTop, prevPub, err = b.historyHub.add(ch, pub, opts)
if err != nil {
return StreamPosition{}, false, err
}
pub.Offset = streamTop.Offset
if opts.IdempotencyKey != "" {
resultExpireSeconds := int64(defaultIdempotentResultExpireSeconds)
if opts.IdempotentResultTTL != 0 {
resultExpireSeconds = int64(opts.IdempotentResultTTL.Seconds())
}
b.saveResultToCache(ch, opts.IdempotencyKey, streamTop, resultExpireSeconds)
}
return streamTop, false, b.eventHandler.HandlePublication(ch, pub, streamTop, opts.UseDelta, prevPub)
}
streamPosition := StreamPosition{}
if opts.IdempotencyKey != "" {
resultExpireSeconds := int64(defaultIdempotentResultExpireSeconds)
if opts.IdempotentResultTTL != 0 {
resultExpireSeconds = int64(opts.IdempotentResultTTL.Seconds())
}
b.saveResultToCache(ch, opts.IdempotencyKey, streamPosition, resultExpireSeconds)
}
return streamPosition, false, b.eventHandler.HandlePublication(ch, pub, StreamPosition{}, opts.UseDelta, prevPub)
}
func (b *MemoryBroker) getResultFromCache(ch string, key string) (StreamPosition, bool) {
b.resultCacheMu.RLock()
defer b.resultCacheMu.RUnlock()
res, ok := b.resultCache[ch+"_"+key]
return res, ok
}
func (b *MemoryBroker) saveResultToCache(ch string, key string, sp StreamPosition, resultExpireSeconds int64) {
b.resultCacheMu.Lock()
defer b.resultCacheMu.Unlock()
cacheKey := ch + "_" + key
b.resultCache[cacheKey] = sp
expireAt := time.Now().Unix() + resultExpireSeconds
heap.Push(&b.resultExpireQueue, &priority.Item{Value: cacheKey, Priority: expireAt})
if b.nextExpireCheck == 0 || b.nextExpireCheck > expireAt {
b.nextExpireCheck = expireAt
}
}
func (b *MemoryBroker) expireResultCache() {
var nextExpireCheck int64
for {
select {
case <-time.After(time.Second):
case <-b.closeCh:
return
}
b.resultCacheMu.Lock()
if b.nextExpireCheck == 0 || b.nextExpireCheck > time.Now().Unix() {
b.resultCacheMu.Unlock()
continue
}
nextExpireCheck = 0
for b.resultExpireQueue.Len() > 0 {
item := heap.Pop(&b.resultExpireQueue).(*priority.Item)
expireAt := item.Priority
if expireAt > time.Now().Unix() {
heap.Push(&b.resultExpireQueue, item)
nextExpireCheck = expireAt
break
}
key := item.Value
delete(b.resultCache, key)
}
b.nextExpireCheck = nextExpireCheck
b.resultCacheMu.Unlock()
}
}
// PublishJoin - see Broker interface description.
func (b *MemoryBroker) PublishJoin(ch string, info *ClientInfo) error {
return b.eventHandler.HandleJoin(ch, info)
}
// PublishLeave - see Broker interface description.
func (b *MemoryBroker) PublishLeave(ch string, info *ClientInfo) error {
return b.eventHandler.HandleLeave(ch, info)
}
// PublishControl - see Broker interface description.
func (b *MemoryBroker) PublishControl(data []byte, _, _ string) error {
return b.eventHandler.HandleControl(data)
}
// Subscribe is noop here.
func (b *MemoryBroker) Subscribe(_ string) error {
return nil
}
// Unsubscribe node from channel. Noop here.
func (b *MemoryBroker) Unsubscribe(_ string) error {
return nil
}
// History - see Broker interface description.
func (b *MemoryBroker) History(ch string, opts HistoryOptions) ([]*Publication, StreamPosition, error) {
return b.historyHub.get(ch, opts)
}
// RemoveHistory - see Broker interface description.
func (b *MemoryBroker) RemoveHistory(ch string) error {
return b.historyHub.remove(ch)
}
type historyHub struct {
sync.RWMutex
streams map[string]*memstream.Stream
nextExpireCheck int64
expireQueue priority.Queue
expires map[string]int64
historyMetaTTL time.Duration
nextRemoveCheck int64
removeQueue priority.Queue
removes map[string]int64
closeCh chan struct{}
}
func newHistoryHub(historyMetaTTL time.Duration, closeCh chan struct{}) *historyHub {
return &historyHub{
streams: make(map[string]*memstream.Stream),
expireQueue: priority.MakeQueue(),
expires: make(map[string]int64),
historyMetaTTL: historyMetaTTL,
removeQueue: priority.MakeQueue(),
removes: make(map[string]int64),
closeCh: closeCh,
}
}
func (h *historyHub) close() {
close(h.closeCh)
}
func (h *historyHub) runCleanups() {
go h.expireStreams()
go h.removeStreams()
}
func (h *historyHub) removeStreams() {
var nextRemoveCheck int64
for {
select {
case <-time.After(time.Second):
case <-h.closeCh:
return
}
h.Lock()
if h.nextRemoveCheck == 0 || h.nextRemoveCheck > time.Now().Unix() {
h.Unlock()
continue
}
nextRemoveCheck = 0
for h.removeQueue.Len() > 0 {
item := heap.Pop(&h.removeQueue).(*priority.Item)
expireAt := item.Priority
if expireAt > time.Now().Unix() {
heap.Push(&h.removeQueue, item)
nextRemoveCheck = expireAt
break
}
ch := item.Value
exp, ok := h.removes[ch]
if !ok {
continue
}
if exp <= expireAt {
delete(h.removes, ch)
delete(h.streams, ch)
} else {
heap.Push(&h.removeQueue, &priority.Item{Value: ch, Priority: exp})
}
}
h.nextRemoveCheck = nextRemoveCheck
h.Unlock()
}
}
func (h *historyHub) expireStreams() {
var nextExpireCheck int64
for {
select {
case <-time.After(time.Second):
case <-h.closeCh:
return
}
h.Lock()
if h.nextExpireCheck == 0 || h.nextExpireCheck > time.Now().Unix() {
h.Unlock()
continue
}
nextExpireCheck = 0
for h.expireQueue.Len() > 0 {
item := heap.Pop(&h.expireQueue).(*priority.Item)
expireAt := item.Priority
if expireAt > time.Now().Unix() {
heap.Push(&h.expireQueue, item)
nextExpireCheck = expireAt
break
}
ch := item.Value
exp, ok := h.expires[ch]
if !ok {
continue
}
if exp <= expireAt {
delete(h.expires, ch)
if stream, ok := h.streams[ch]; ok {
stream.Clear()
}
} else {
heap.Push(&h.expireQueue, &priority.Item{Value: ch, Priority: exp})
}
}
h.nextExpireCheck = nextExpireCheck
h.Unlock()
}
}
func (h *historyHub) add(ch string, pub *Publication, opts PublishOptions) (StreamPosition, *Publication, error) {
h.Lock()
defer h.Unlock()
var prevPub *Publication // May be nil is there were no previous publications.
if opts.UseDelta {
pubs, _, err := h.getLocked(ch, HistoryOptions{Filter: HistoryFilter{
Limit: 1,
Reverse: true,
}, MetaTTL: opts.HistoryMetaTTL})
if err != nil {
return StreamPosition{}, nil, fmt.Errorf("error getting previous publication from stream: %w", err)
}
if len(pubs) > 0 {
prevPub = pubs[0]
}
}
var offset uint64
var epoch string
expireAt := time.Now().Unix() + int64(opts.HistoryTTL.Seconds())
if _, ok := h.expires[ch]; !ok {
heap.Push(&h.expireQueue, &priority.Item{Value: ch, Priority: expireAt})
}
h.expires[ch] = expireAt
if h.nextExpireCheck == 0 || h.nextExpireCheck > expireAt {
h.nextExpireCheck = expireAt
}
historyMetaTTL := opts.HistoryMetaTTL
if historyMetaTTL == 0 {
historyMetaTTL = h.historyMetaTTL
}
if historyMetaTTL > 0 {
removeAt := time.Now().Unix() + int64(historyMetaTTL.Seconds())
if _, ok := h.removes[ch]; !ok {
heap.Push(&h.removeQueue, &priority.Item{Value: ch, Priority: removeAt})
}
h.removes[ch] = removeAt
if h.nextRemoveCheck == 0 || h.nextRemoveCheck > removeAt {
h.nextRemoveCheck = removeAt
}
}
if stream, ok := h.streams[ch]; ok {
offset, _ = stream.Add(pub, opts.HistorySize)
epoch = stream.Epoch()
} else {
stream := memstream.New()
offset, _ = stream.Add(pub, opts.HistorySize)
epoch = stream.Epoch()
h.streams[ch] = stream
}
pub.Offset = offset
return StreamPosition{Offset: offset, Epoch: epoch}, prevPub, nil
}
// Lock must be held outside.
func (h *historyHub) createStream(ch string) StreamPosition {
stream := memstream.New()
h.streams[ch] = stream
streamPosition := StreamPosition{}
streamPosition.Offset = 0
streamPosition.Epoch = stream.Epoch()
return streamPosition
}
func getPosition(stream *memstream.Stream) StreamPosition {
streamPosition := StreamPosition{}
streamPosition.Offset = stream.Top()
streamPosition.Epoch = stream.Epoch()
return streamPosition
}
func (h *historyHub) get(ch string, opts HistoryOptions) ([]*Publication, StreamPosition, error) {
h.Lock()
defer h.Unlock()
return h.getLocked(ch, opts)
}
// Lock must be held outside.
func (h *historyHub) getLocked(ch string, opts HistoryOptions) ([]*Publication, StreamPosition, error) {
filter := opts.Filter
historyMetaTTL := opts.MetaTTL
if historyMetaTTL == 0 {
historyMetaTTL = h.historyMetaTTL
}
if historyMetaTTL > 0 {
removeAt := time.Now().Unix() + int64(historyMetaTTL.Seconds())
if _, ok := h.removes[ch]; !ok {
heap.Push(&h.removeQueue, &priority.Item{Value: ch, Priority: removeAt})
}
h.removes[ch] = removeAt
if h.nextRemoveCheck == 0 || h.nextRemoveCheck > removeAt {
h.nextRemoveCheck = removeAt
}
}
stream, ok := h.streams[ch]
if !ok {
return nil, h.createStream(ch), nil
}
if filter.Since == nil {
if filter.Limit == 0 {
return nil, getPosition(stream), nil
}
items, _, err := stream.Get(0, false, filter.Limit, filter.Reverse)
if err != nil {
return nil, StreamPosition{}, err
}
pubs := make([]*Publication, 0, len(items))
for _, item := range items {
pub := item.Value.(*Publication)
pubs = append(pubs, pub)
}
return pubs, getPosition(stream), nil
}
since := filter.Since
streamPosition := getPosition(stream)
if !filter.Reverse {
if streamPosition.Offset == since.Offset && since.Epoch == stream.Epoch() {
return nil, streamPosition, nil
}
}
streamOffset := since.Offset + 1
if filter.Reverse {
streamOffset = since.Offset - 1
}
items, _, err := stream.Get(streamOffset, true, filter.Limit, filter.Reverse)
if err != nil {
return nil, StreamPosition{}, err
}
pubs := make([]*Publication, 0, len(items))
for _, item := range items {
pub := item.Value.(*Publication)
pubs = append(pubs, pub)
}
return pubs, streamPosition, nil
}
func (h *historyHub) remove(ch string) error {
h.Lock()
defer h.Unlock()
if stream, ok := h.streams[ch]; ok {
stream.Clear()
}
return nil
}