forked from influxdata/kapacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
union.go
176 lines (159 loc) · 3.64 KB
/
union.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
package kapacitor
import (
"log"
"time"
"github.com/influxdata/kapacitor/models"
"github.com/influxdata/kapacitor/pipeline"
"github.com/influxdata/kapacitor/timer"
)
type UnionNode struct {
node
u *pipeline.UnionNode
// Buffer of points/batches from each parent
sources [][]models.PointInterface
rename string
}
// Create a new UnionNode which combines all parent data streams into a single stream.
// No transformation of any kind is performed.
func newUnionNode(et *ExecutingTask, n *pipeline.UnionNode, l *log.Logger) (*UnionNode, error) {
un := &UnionNode{
u: n,
node: node{Node: n, et: et, logger: l},
}
un.node.runF = un.runUnion
return un, nil
}
func (u *UnionNode) runUnion([]byte) error {
union := make(chan srcPoint)
u.rename = u.u.Rename
// Spawn goroutine for each parent
errors := make(chan error, len(u.ins))
for i, in := range u.ins {
t := u.et.tm.TimingService.NewTimer(u.statMap.Get(statAverageExecTime).(timer.Setter))
go func(index int, e *Edge, t timer.Timer) {
for p, ok := e.Next(); ok; p, ok = e.Next() {
union <- srcPoint{
src: index,
p: p,
}
}
errors <- nil
}(i, in, t)
}
// Channel for returning the first if any errors, from parent goroutines.
errC := make(chan error, 1)
go func() {
for range u.ins {
err := <-errors
if err != nil {
errC <- err
return
}
}
// Close the union channel once all parents are done writing
close(union)
}()
//
// Emit values received from parents ordered by time.
//
// Keep buffer of values from parents so they can be ordered.
u.sources = make([][]models.PointInterface, len(u.ins))
for {
select {
case err := <-errC:
// One of the parents errored out, return the error.
return err
case source, ok := <-union:
u.timer.Start()
if !ok {
// We are done, emit all buffered points
for {
more, err := u.emitNext(true)
if err != nil {
return err
}
if !more {
return nil
}
}
}
// Add newest point to buffer
u.sources[source.src] = append(u.sources[source.src], source.p)
// Emit the next values
_, err := u.emitNext(false)
if err != nil {
return err
}
u.timer.Stop()
}
}
}
func (u *UnionNode) emitNext(drain bool) (more bool, err error) {
more = true
// Find low water mark
var mark time.Time
markSet := false
for _, values := range u.sources {
if len(values) > 0 {
if !markSet || values[0].PointTime().Before(mark) {
mark = values[0].PointTime()
markSet = true
}
} else if !drain {
// We can't continue processing until we have
// at least one value buffered from each parent.
// Unless we are draining the buffer than we can continue.
return
}
}
// Emit all values that are at or below the mark.
remaining := 0
for i, values := range u.sources {
var j int
l := len(values)
for j = 0; j < l; j++ {
if !values[j].PointTime().After(mark) {
err = u.emit(values[j])
if err != nil {
return
}
} else {
break
}
}
// Drop values that were emitted
u.sources[i] = values[j:]
remaining += len(u.sources[i])
}
more = remaining > 0
return
}
func (u *UnionNode) emit(v models.PointInterface) error {
u.timer.Pause()
defer u.timer.Resume()
switch u.Provides() {
case pipeline.StreamEdge:
p := v.(models.Point)
if u.rename != "" {
p.Name = u.rename
}
for _, child := range u.outs {
err := child.CollectPoint(p)
if err != nil {
return err
}
}
case pipeline.BatchEdge:
b := v.(models.Batch)
if u.rename != "" {
b.Name = u.rename
}
for _, child := range u.outs {
err := child.CollectBatch(b)
if err != nil {
return err
}
}
}
return nil
}