forked from influxdata/kapacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
where.go
109 lines (97 loc) · 2.93 KB
/
where.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
package kapacitor
import (
"errors"
"fmt"
"log"
"github.com/influxdata/kapacitor/models"
"github.com/influxdata/kapacitor/pipeline"
"github.com/influxdata/kapacitor/tick/stateful"
)
type WhereNode struct {
node
w *pipeline.WhereNode
endpoint string
expressions map[models.GroupID]stateful.Expression
scopePools map[models.GroupID]stateful.ScopePool
}
// Create a new WhereNode which filters down the batch or stream by a condition
func newWhereNode(et *ExecutingTask, n *pipeline.WhereNode, l *log.Logger) (wn *WhereNode, err error) {
wn = &WhereNode{
node: node{Node: n, et: et, logger: l},
w: n,
expressions: make(map[models.GroupID]stateful.Expression),
scopePools: make(map[models.GroupID]stateful.ScopePool),
}
wn.runF = wn.runWhere
if n.Lambda == nil {
return nil, errors.New("nil expression passed to WhereNode")
}
return
}
func (w *WhereNode) runWhere(snapshot []byte) error {
switch w.Wants() {
case pipeline.StreamEdge:
for p, ok := w.ins[0].NextPoint(); ok; p, ok = w.ins[0].NextPoint() {
w.timer.Start()
expr := w.expressions[p.Group]
scopePool := w.scopePools[p.Group]
if expr == nil {
compiledExpr, err := stateful.NewExpression(w.w.Lambda.Expression)
if err != nil {
return fmt.Errorf("Failed to compile expression in where clause: %v", err)
}
expr = compiledExpr
w.expressions[p.Group] = expr
scopePool = stateful.NewScopePool(stateful.FindReferenceVariables(w.w.Lambda.Expression))
w.scopePools[p.Group] = scopePool
}
if pass, err := EvalPredicate(expr, scopePool, p.Time, p.Fields, p.Tags); pass {
w.timer.Pause()
for _, child := range w.outs {
err := child.CollectPoint(p)
if err != nil {
return err
}
}
w.timer.Resume()
} else if err != nil {
w.logger.Println("E! error while evaluating expression:", err)
}
w.timer.Stop()
}
case pipeline.BatchEdge:
for b, ok := w.ins[0].NextBatch(); ok; b, ok = w.ins[0].NextBatch() {
w.timer.Start()
expr := w.expressions[b.Group]
scopePool := w.scopePools[b.Group]
if expr == nil {
compiledExpr, err := stateful.NewExpression(w.w.Lambda.Expression)
if err != nil {
return fmt.Errorf("Failed to compile expression in where clause: %v", err)
}
expr = compiledExpr
w.expressions[b.Group] = expr
scopePool = stateful.NewScopePool(stateful.FindReferenceVariables(w.w.Lambda.Expression))
w.scopePools[b.Group] = scopePool
}
points := b.Points
b.Points = make([]models.BatchPoint, 0, len(b.Points))
for _, p := range points {
if pass, err := EvalPredicate(expr, scopePool, p.Time, p.Fields, p.Tags); pass {
if err != nil {
w.logger.Println("E! error while evaluating WHERE expression:", err)
}
b.Points = append(b.Points, p)
}
}
w.timer.Stop()
for _, child := range w.outs {
err := child.CollectBatch(b)
if err != nil {
return err
}
}
}
}
return nil
}