forked from influxdata/kapacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
join.go
719 lines (658 loc) · 16.8 KB
/
join.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
package kapacitor
import (
"fmt"
"sync"
"time"
"github.com/influxdata/influxdb/influxql"
"github.com/influxdata/kapacitor/edge"
"github.com/influxdata/kapacitor/expvar"
"github.com/influxdata/kapacitor/models"
"github.com/influxdata/kapacitor/pipeline"
"github.com/pkg/errors"
)
type JoinNode struct {
node
j *pipeline.JoinNode
fill influxql.FillOption
fillValue interface{}
groupsMu sync.RWMutex
groups map[models.GroupID]*joinGroup
// Represents the lower bound of times per group per source
lowMarks map[srcGroup]time.Time
// Buffer for caching points that need to be matched with specific points.
matchGroupsBuffer map[models.GroupID][]srcPoint
// Buffer for caching specific points until their match arrivces.
specificGroupsBuffer map[models.GroupID][]srcPoint
reported map[int]bool
allReported bool
}
// Create a new JoinNode, which takes pairs from parent streams combines them into a single point.
func newJoinNode(et *ExecutingTask, n *pipeline.JoinNode, d NodeDiagnostic) (*JoinNode, error) {
jn := &JoinNode{
j: n,
node: node{Node: n, et: et, diag: d},
groups: make(map[models.GroupID]*joinGroup),
matchGroupsBuffer: make(map[models.GroupID][]srcPoint),
specificGroupsBuffer: make(map[models.GroupID][]srcPoint),
lowMarks: make(map[srcGroup]time.Time),
reported: make(map[int]bool),
}
// Set fill
switch fill := n.Fill.(type) {
case string:
switch fill {
case "null":
jn.fill = influxql.NullFill
case "none":
jn.fill = influxql.NoFill
default:
return nil, fmt.Errorf("unexpected fill option %s", fill)
}
case int64, float64:
jn.fill = influxql.NumberFill
jn.fillValue = fill
default:
jn.fill = influxql.NoFill
}
jn.node.runF = jn.runJoin
return jn, nil
}
func (n *JoinNode) runJoin([]byte) error {
consumer := edge.NewMultiConsumerWithStats(n.ins, n)
valueF := func() int64 {
n.groupsMu.RLock()
l := len(n.groups)
n.groupsMu.RUnlock()
return int64(l)
}
n.statMap.Set(statCardinalityGauge, expvar.NewIntFuncGauge(valueF))
return consumer.Consume()
}
func (n *JoinNode) BufferedBatch(src int, batch edge.BufferedBatchMessage) error {
return n.doMessage(src, batch)
}
func (n *JoinNode) Point(src int, p edge.PointMessage) error {
return n.doMessage(src, p)
}
func (n *JoinNode) Barrier(src int, b edge.BarrierMessage) error {
g := n.getOrCreateGroup(b.GroupID())
g.Barrier(src, b.Time())
return edge.Forward(n.outs, b)
}
func (n *JoinNode) Finish() error {
// No more points are coming signal all groups to finish up.
for _, group := range n.groups {
if err := group.Finish(); err != nil {
return err
}
}
return nil
}
type messageMeta interface {
edge.Message
edge.PointMeta
}
type srcPoint struct {
Src int
Msg messageMeta
}
func (n *JoinNode) doMessage(src int, m messageMeta) error {
n.timer.Start()
defer n.timer.Stop()
if len(n.j.Dimensions) > 0 {
// Match points with their group based on join dimensions.
n.matchPoints(srcPoint{Src: src, Msg: m})
} else {
// Just send point on to group, we are not joining on specific dimensions.
group := n.getOrCreateGroup(m.GroupID())
group.Collect(src, m)
}
return nil
}
// The purpose of this method is to match more specific points
// with the less specific points as they arrive.
//
// Where 'more specific' means, that a point has more dimensions than the join.on dimensions.
func (n *JoinNode) matchPoints(p srcPoint) {
// Specific points may be sent to the joinset without a matching point, but not the other way around.
// This is because the specific points have the needed specific tag data.
// The joinset will later handle the fill inner/outer join operations.
if !n.allReported {
n.reported[p.Src] = true
n.allReported = len(n.reported) == len(n.ins)
}
t := p.Msg.Time().Round(n.j.Tolerance)
groupId := models.ToGroupID(
p.Msg.Name(),
p.Msg.GroupInfo().Tags,
models.Dimensions{
ByName: p.Msg.Dimensions().ByName,
TagNames: n.j.Dimensions,
},
)
// Update current srcGroup lowMark
srcG := srcGroup{src: p.Src, groupId: groupId}
n.lowMarks[srcG] = t
// Determine lowMark, the oldest time per parent per group.
var lowMark time.Time
if n.allReported {
for s := 0; s < len(n.ins); s++ {
sg := srcGroup{src: s, groupId: groupId}
if lm := n.lowMarks[sg]; lowMark.IsZero() || lm.Before(lowMark) {
lowMark = lm
}
}
}
// Check for cached specific points that can now be sent alone.
if n.allReported {
// Send all cached specific point that won't match anymore.
var i int
buf := n.specificGroupsBuffer[groupId]
l := len(buf)
for i = 0; i < l; i++ {
st := buf[i].Msg.Time().Round(n.j.Tolerance)
if st.Before(lowMark) {
// Send point by itself since it won't get a match.
n.sendSpecificPoint(buf[i])
} else {
break
}
}
// Remove all sent points.
n.specificGroupsBuffer[groupId] = buf[i:]
}
if len(p.Msg.Dimensions().TagNames) > len(n.j.Dimensions) {
// We have a specific point and three options:
// 1. Find the cached match point and send both to group.
// 2. Cache the specific point for later.
// 3. Send the specific point alone if it is no longer possible that a match will arrive.
// Search for a match.
// Also purge any old match points.
matches := n.matchGroupsBuffer[groupId]
matched := false
var i int
l := len(matches)
for i = 0; i < l; i++ {
match := matches[i]
pt := match.Msg.Time().Round(n.j.Tolerance)
if pt.Equal(t) {
// Option 1, send both points
n.sendMatchPoint(p, match)
matched = true
}
if !pt.Before(lowMark) {
break
}
}
if n.allReported {
// Can't trust lowMark until all parents have reported.
// Remove any unneeded match points.
n.matchGroupsBuffer[groupId] = matches[i:]
}
// If the point didn't match that leaves us with options 2 and 3.
if !matched {
if n.allReported && t.Before(lowMark) {
// Option 3
// Send this specific point by itself since it won't get a match.
n.sendSpecificPoint(p)
} else {
// Option 2
// Cache this point for when its match arrives.
n.specificGroupsBuffer[groupId] = append(n.specificGroupsBuffer[groupId], p)
}
}
} else {
// Cache match point.
n.matchGroupsBuffer[groupId] = append(n.matchGroupsBuffer[groupId], p)
// Send all specific points that match, to the group.
var i int
buf := n.specificGroupsBuffer[groupId]
l := len(buf)
for i = 0; i < l; i++ {
st := buf[i].Msg.Time().Round(n.j.Tolerance)
if st.Equal(t) {
n.sendMatchPoint(buf[i], p)
} else {
break
}
}
// Remove all sent points
n.specificGroupsBuffer[groupId] = buf[i:]
}
}
// Add the specific tags from the specific point to the matched point
// and then send both on to the group.
func (n *JoinNode) sendMatchPoint(specific, matched srcPoint) {
var newMatched messageMeta
switch msg := matched.Msg.(type) {
case edge.BufferedBatchMessage:
b := msg.ShallowCopy()
b.SetBegin(b.Begin().ShallowCopy())
b.Begin().SetTags(specific.Msg.GroupInfo().Tags)
newMatched = b
case edge.PointMessage:
p := msg.ShallowCopy()
info := specific.Msg.GroupInfo()
p.SetTagsAndDimensions(info.Tags, info.Dimensions)
newMatched = p
}
group := n.getOrCreateGroup(specific.Msg.GroupID())
// Collect specific point
group.Collect(specific.Src, specific.Msg)
// Collect new matched point
group.Collect(matched.Src, newMatched)
}
// Send only the specific point to the group
func (n *JoinNode) sendSpecificPoint(specific srcPoint) {
group := n.getOrCreateGroup(specific.Msg.GroupID())
group.Collect(specific.Src, specific.Msg)
}
// safely get the group for the point or create one if it doesn't exist.
func (n *JoinNode) getOrCreateGroup(groupID models.GroupID) *joinGroup {
group := n.groups[groupID]
if group == nil {
group = n.newGroup(len(n.ins))
n.groupsMu.Lock()
n.groups[groupID] = group
n.groupsMu.Unlock()
}
return group
}
func (n *JoinNode) newGroup(count int) *joinGroup {
return &joinGroup{
n: n,
sets: make(map[time.Time][]*joinset),
head: make([]time.Time, count),
}
}
// handles emitting joined sets once enough data has arrived from parents.
type joinGroup struct {
n *JoinNode
sets map[time.Time][]*joinset
head []time.Time
oldestTime time.Time
}
func (g *joinGroup) Finish() error {
return g.emitAll()
}
// Collect a point from a given parent.
// emit the oldest set if we have collected enough data.
func (g *joinGroup) Collect(src int, p timeMessage) error {
t := p.Time().Round(g.n.j.Tolerance)
if t.Before(g.oldestTime) || g.oldestTime.IsZero() {
g.oldestTime = t
}
var set *joinset
sets := g.sets[t]
if len(sets) == 0 {
set = g.newJoinset(t)
sets = append(sets, set)
g.sets[t] = sets
}
for i := 0; i < len(sets); i++ {
if !sets[i].Has(src) {
set = sets[i]
break
}
}
if set == nil {
set = g.newJoinset(t)
sets = append(sets, set)
g.sets[t] = sets
}
set.Set(src, p)
// Update head
g.head[src] = t
onlyReadySets := g.checkOnlyReadSets()
err := g.emit(onlyReadySets)
if err != nil {
return err
}
return nil
}
// Barrier signals a src will not produce points older than time.
// Emit the oldest set if we have collected enough data.
func (g *joinGroup) Barrier(src int, t time.Time) error {
t = t.Round(g.n.j.Tolerance)
if t.Before(g.oldestTime) || g.oldestTime.IsZero() {
g.oldestTime = t
}
// Update head
g.head[src] = t
onlyReadySets := g.checkOnlyReadSets()
err := g.emit(onlyReadySets)
if err != nil {
return err
}
return nil
}
func (g *joinGroup) newJoinset(t time.Time) *joinset {
return newJoinset(
g.n,
g.n.j.StreamName,
g.n.fill,
g.n.fillValue,
g.n.j.Names,
g.n.j.Delimiter,
g.n.j.Tolerance,
t,
g.n.diag,
)
}
// emit a set and update the oldestTime.
func (g *joinGroup) emit(onlyReadySets bool) error {
if len(g.sets) == 0 {
return nil
}
sets := g.sets[g.oldestTime]
i := 0
for ; i < len(sets); i++ {
if sets[i].Ready() || !onlyReadySets {
err := g.emitJoinedSet(sets[i])
if err != nil {
return err
}
} else {
break
}
}
if i == len(sets) {
delete(g.sets, g.oldestTime)
} else {
g.sets[g.oldestTime] = sets[i:]
}
g.oldestTime = time.Time{}
for t := range g.sets {
if g.oldestTime.IsZero() || t.Before(g.oldestTime) {
g.oldestTime = t
}
}
// Check if there are more non ready sets we can emit.
// This occurs when one of the parents missed a section of data
// while the other parents continued on.
// We need to emit all the buffered sets as soon as all the parent heads have passed the oldesttime.
if !onlyReadySets {
onlyReadySets = g.checkOnlyReadSets()
return g.emit(onlyReadySets)
}
return nil
}
// checkOnlyReadSets reports if all heads are past the oldesttime,
// indicated whether its ok to emit non ready sets.
func (g *joinGroup) checkOnlyReadSets() bool {
onlyReadySets := false
// Check if heads are past oldest time
for _, t := range g.head {
if !t.After(g.oldestTime) {
onlyReadySets = true
break
}
}
return onlyReadySets
}
// emit sets until we have none left.
func (g *joinGroup) emitAll() error {
var lastErr error
for len(g.sets) > 0 {
err := g.emit(false)
if err != nil {
lastErr = err
}
}
return lastErr
}
// emit a single joined set
func (g *joinGroup) emitJoinedSet(set *joinset) error {
if set.name == "" {
set.name = set.First().(edge.NameGetter).Name()
}
switch g.n.Wants() {
case pipeline.StreamEdge:
p, err := set.JoinIntoPoint()
if err != nil {
return errors.Wrap(err, "failed to join into point")
}
if p != nil {
if err := edge.Forward(g.n.outs, p); err != nil {
return err
}
}
case pipeline.BatchEdge:
b, err := set.JoinIntoBatch()
if err != nil {
return errors.Wrap(err, "failed to join into batch")
}
if b != nil {
if err := edge.Forward(g.n.outs, b); err != nil {
return err
}
}
}
return nil
}
// A groupId and its parent
type srcGroup struct {
src int
groupId models.GroupID
}
// represents a set of points or batches from the same joined time
type joinset struct {
j *JoinNode
name string
fill influxql.FillOption
fillValue interface{}
prefixes []string
delimiter string
time time.Time
tolerance time.Duration
values []edge.Message
expected int
size int
finished int
first int
diag NodeDiagnostic
}
func newJoinset(
n *JoinNode,
name string,
fill influxql.FillOption,
fillValue interface{},
prefixes []string,
delimiter string,
tolerance time.Duration,
time time.Time,
d NodeDiagnostic,
) *joinset {
expected := len(prefixes)
return &joinset{
j: n,
name: name,
fill: fill,
fillValue: fillValue,
prefixes: prefixes,
delimiter: delimiter,
expected: expected,
values: make([]edge.Message, expected),
first: expected,
time: time,
tolerance: tolerance,
diag: d,
}
}
func (js *joinset) Ready() bool {
return js.size == js.expected
}
func (js *joinset) Has(i int) bool {
return js.values[i] != nil
}
// add a point to the set from a given parent index.
func (js *joinset) Set(i int, v edge.Message) {
if i < js.first {
js.first = i
}
js.values[i] = v
js.size++
}
// a valid point in the set
func (js *joinset) First() edge.Message {
return js.values[js.first]
}
// join all points into a single point
func (js *joinset) JoinIntoPoint() (edge.PointMessage, error) {
first, ok := js.First().(edge.PointMessage)
if !ok {
return nil, fmt.Errorf("unexpected type of first value %T", js.First())
}
firstFields := first.Fields()
fields := make(models.Fields, js.size*len(firstFields))
for i, v := range js.values {
if v == nil {
switch js.fill {
case influxql.NullFill:
for k := range firstFields {
fields[js.prefixes[i]+js.delimiter+k] = nil
}
case influxql.NumberFill:
for k := range firstFields {
fields[js.prefixes[i]+js.delimiter+k] = js.fillValue
}
default:
// inner join no valid point possible
return nil, nil
}
} else {
p, ok := v.(edge.FieldGetter)
if !ok {
return nil, fmt.Errorf("unexpected type %T", v)
}
for k, v := range p.Fields() {
fields[js.prefixes[i]+js.delimiter+k] = v
}
}
}
np := edge.NewPointMessage(
js.name, "", "",
first.Dimensions(),
fields,
first.GroupInfo().Tags,
js.time,
)
return np, nil
}
// join all batches the set into a single batch
func (js *joinset) JoinIntoBatch() (edge.BufferedBatchMessage, error) {
first, ok := js.First().(edge.BufferedBatchMessage)
if !ok {
return nil, fmt.Errorf("unexpected type of first value %T", js.First())
}
newBegin := edge.NewBeginBatchMessage(
js.name,
first.Tags(),
first.Dimensions().ByName,
js.time,
0,
)
newPoints := make([]edge.BatchPointMessage, 0, len(first.Points()))
empty := make([]bool, js.expected)
emptyCount := 0
indexes := make([]int, js.expected)
var fieldNames []string
BATCH_POINT:
for emptyCount < js.expected {
set := make([]edge.BatchPointMessage, js.expected)
setTime := time.Time{}
count := 0
for i, batch := range js.values {
if empty[i] {
continue
}
if batch == nil {
emptyCount++
empty[i] = true
continue
}
b, ok := batch.(edge.BufferedBatchMessage)
if !ok {
return nil, fmt.Errorf("unexpected type of batch value %T", batch)
}
if indexes[i] == len(b.Points()) {
emptyCount++
empty[i] = true
continue
}
bp := b.Points()[indexes[i]]
t := bp.Time().Round(js.tolerance)
if setTime.IsZero() {
setTime = t
}
if t.Before(setTime) {
// We need to backup
setTime = t
for j := range set {
if set[j] != nil {
indexes[j]--
}
set[j] = nil
}
set[i] = bp
indexes[i]++
count = 1
} else if t.Equal(setTime) {
if fieldNames == nil {
for k := range bp.Fields() {
fieldNames = append(fieldNames, k)
}
}
set[i] = bp
indexes[i]++
count++
}
}
// we didn't get any points from any group we must be empty
// skip this set
if count == 0 {
continue
}
// Join all batch points in set
fields := make(models.Fields, js.expected*len(fieldNames))
for i, bp := range set {
if bp == nil {
switch js.fill {
case influxql.NullFill:
for _, k := range fieldNames {
fields[js.prefixes[i]+js.delimiter+k] = nil
}
case influxql.NumberFill:
for _, k := range fieldNames {
fields[js.prefixes[i]+js.delimiter+k] = js.fillValue
}
default:
// inner join no valid point possible
continue BATCH_POINT
}
} else {
for k, v := range bp.Fields() {
fields[js.prefixes[i]+js.delimiter+k] = v
}
}
}
bp := edge.NewBatchPointMessage(
fields,
newBegin.Tags(),
setTime,
)
newPoints = append(newPoints, bp)
}
newBegin.SetSizeHint(len(newPoints))
return edge.NewBufferedBatchMessage(
newBegin,
newPoints,
edge.NewEndBatchMessage(),
), nil
}
type durationVar struct {
expvar.Int
}
func (d *durationVar) String() string {
return time.Duration(d.IntValue()).String()
}