forked from influxdata/kapacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.go
438 lines (377 loc) · 9.28 KB
/
node.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
package kapacitor
import (
"bytes"
"expvar"
"fmt"
"runtime"
"sync"
"sync/atomic"
"time"
"github.com/influxdata/kapacitor/alert"
"github.com/influxdata/kapacitor/edge"
kexpvar "github.com/influxdata/kapacitor/expvar"
"github.com/influxdata/kapacitor/keyvalue"
"github.com/influxdata/kapacitor/models"
"github.com/influxdata/kapacitor/pipeline"
"github.com/influxdata/kapacitor/server/vars"
"github.com/influxdata/kapacitor/timer"
"github.com/pkg/errors"
)
const (
statErrorCount = "errors"
statCardinalityGauge = "working_cardinality"
statAverageExecTime = "avg_exec_time_ns"
)
type NodeDiagnostic interface {
Error(msg string, err error, ctx ...keyvalue.T)
// AlertNode
AlertTriggered(level alert.Level, id string, message string, rows *models.Row)
// AutoscaleNode
SettingReplicas(new int, old int, id string)
// QueryNode
StartingBatchQuery(q string)
// LogNode
LogPointData(key, prefix string, data edge.PointMessage)
LogBatchData(key, prefix string, data edge.BufferedBatchMessage)
//UDF
UDFLog(s string)
}
type nodeDiagnostic struct {
NodeDiagnostic
node *node
}
func newNodeDiagnostic(n *node, diag NodeDiagnostic) *nodeDiagnostic {
return &nodeDiagnostic{
NodeDiagnostic: diag,
node: n,
}
}
func (n *nodeDiagnostic) Error(msg string, err error, ctx ...keyvalue.T) {
n.node.incrementErrorCount()
if !n.node.quiet {
n.NodeDiagnostic.Error(msg, err, ctx...)
}
}
// A node that can be in an executor.
type Node interface {
pipeline.Node
addParentEdge(edge.StatsEdge)
init(quiet bool)
// start the node and its children
start(snapshot []byte)
stop()
// snapshot running state
snapshot() ([]byte, error)
restore(snapshot []byte) error
// wait for the node to finish processing and return any errors
Wait() error
// link specified child
linkChild(c Node) error
addParent(p Node)
// close children edges
closeChildEdges()
// abort parent edges
abortParentEdges()
// executing dot
edot(buf *bytes.Buffer, labels bool)
nodeStatsByGroup() map[models.GroupID]nodeStats
collectedCount() int64
emittedCount() int64
incrementErrorCount()
stats() map[string]interface{}
}
//implementation of Node
type node struct {
pipeline.Node
et *ExecutingTask
parents []Node
children []Node
runF func(snapshot []byte) error
stopF func()
errCh chan error
err error
finishedMu sync.Mutex
finished bool
ins []edge.StatsEdge
outs []edge.StatsEdge
diag NodeDiagnostic
timer timer.Timer
statsKey string
statMap *kexpvar.Map
quiet bool
nodeErrors *kexpvar.Int
}
func (n *node) addParentEdge(e edge.StatsEdge) {
n.ins = append(n.ins, e)
}
func (n *node) abortParentEdges() {
for _, in := range n.ins {
in.Abort()
}
}
func (n *node) init(quiet bool) {
tags := map[string]string{
"task": n.et.Task.ID,
"node": n.Name(),
"type": n.et.Task.Type.String(),
"kind": n.Desc(),
}
n.statsKey, n.statMap = vars.NewStatistic("nodes", tags)
avgExecVar := &MaxDuration{}
n.statMap.Set(statAverageExecTime, avgExecVar)
n.nodeErrors = &kexpvar.Int{}
n.statMap.Set(statErrorCount, n.nodeErrors)
n.diag = newNodeDiagnostic(n, n.diag)
n.statMap.Set(statCardinalityGauge, kexpvar.NewIntFuncGauge(nil))
n.timer = n.et.tm.TimingService.NewTimer(avgExecVar)
n.errCh = make(chan error, 1)
n.quiet = quiet
}
func (n *node) start(snapshot []byte) {
go func() {
var err error
defer func() {
// Always close children edges
n.closeChildEdges()
// Propagate error up
if err != nil {
// Handle panic in runF
r := recover()
if r != nil {
trace := make([]byte, 512)
n := runtime.Stack(trace, false)
err = fmt.Errorf("%s: Trace:%s", r, string(trace[:n]))
}
n.abortParentEdges()
n.diag.Error("node failed", err)
err = errors.Wrap(err, n.Name())
}
n.errCh <- err
}()
// Run node
err = n.runF(snapshot)
}()
}
func (n *node) stop() {
if n.stopF != nil {
n.stopF()
}
vars.DeleteStatistic(n.statsKey)
}
// no-op snapshot
func (n *node) snapshot() (b []byte, err error) { return }
// no-op restore
func (n *node) restore([]byte) error { return nil }
func (n *node) Wait() error {
n.finishedMu.Lock()
defer n.finishedMu.Unlock()
if !n.finished {
n.finished = true
n.err = <-n.errCh
}
return n.err
}
func (n *node) addChild(c Node) (edge.StatsEdge, error) {
if n.Provides() != c.Wants() {
return nil, fmt.Errorf("cannot add child mismatched edges: %s:%s -> %s:%s", n.Name(), n.Provides(), c.Name(), c.Wants())
}
if n.Provides() == pipeline.NoEdge {
return nil, fmt.Errorf("cannot add child no edge expected: %s:%s -> %s:%s", n.Name(), n.Provides(), c.Name(), c.Wants())
}
n.children = append(n.children, c)
d := n.et.tm.diag.WithEdgeContext(n.et.Task.ID, n.Name(), c.Name())
edge := newEdge(n.et.Task.ID, n.Name(), c.Name(), n.Provides(), defaultEdgeBufferSize, d)
if edge == nil {
return nil, fmt.Errorf("unknown edge type %s", n.Provides())
}
c.addParentEdge(edge)
return edge, nil
}
func (n *node) addParent(p Node) {
n.parents = append(n.parents, p)
}
func (n *node) linkChild(c Node) error {
// add child
edge, err := n.addChild(c)
if err != nil {
return err
}
// add parent
c.addParent(n)
// store edge to child
n.outs = append(n.outs, edge)
return nil
}
func (n *node) closeChildEdges() {
for _, child := range n.outs {
child.Close()
}
}
func (n *node) edot(buf *bytes.Buffer, labels bool) {
if labels {
// Print all stats on node.
buf.WriteString(
fmt.Sprintf("\n%s [xlabel=\"",
n.Name(),
),
)
i := 0
n.statMap.DoSorted(func(kv expvar.KeyValue) {
if i != 0 {
// NOTE: A literal \r, indicates a newline right justified in graphviz syntax.
buf.WriteString(`\r`)
}
i++
var s string
if sv, ok := kv.Value.(kexpvar.StringVar); ok {
s = sv.StringValue()
} else {
s = kv.Value.String()
}
buf.WriteString(
fmt.Sprintf("%s=%s",
kv.Key,
s,
),
)
})
buf.Write([]byte("\"];\n"))
for i, c := range n.children {
buf.Write([]byte(
fmt.Sprintf("%s -> %s [label=\"processed=%d\"];\n",
n.Name(),
c.Name(),
n.outs[i].Collected(),
),
))
}
} else {
// Print all stats on node.
buf.Write([]byte(
fmt.Sprintf("\n%s [",
n.Name(),
),
))
n.statMap.DoSorted(func(kv expvar.KeyValue) {
var s string
if sv, ok := kv.Value.(kexpvar.StringVar); ok {
s = sv.StringValue()
} else {
s = kv.Value.String()
}
buf.Write([]byte(
fmt.Sprintf("%s=\"%s\" ",
kv.Key,
s,
),
))
})
buf.Write([]byte("];\n"))
for i, c := range n.children {
buf.Write([]byte(
fmt.Sprintf("%s -> %s [processed=\"%d\"];\n",
n.Name(),
c.Name(),
n.outs[i].Collected(),
),
))
}
}
}
// node collected count is the sum of emitted counts of parent edges
func (n *node) collectedCount() (count int64) {
for _, in := range n.ins {
count += in.Emitted()
}
return
}
// node emitted count is the sum of collected counts of children edges
func (n *node) emittedCount() (count int64) {
for _, out := range n.outs {
count += out.Collected()
}
return
}
// node increment error count increments a nodes error_count stat
func (n *node) incrementErrorCount() {
n.nodeErrors.Add(1)
}
func (n *node) stats() map[string]interface{} {
stats := make(map[string]interface{})
n.statMap.Do(func(kv expvar.KeyValue) {
switch v := kv.Value.(type) {
case kexpvar.IntVar:
stats[kv.Key] = v.IntValue()
case kexpvar.FloatVar:
stats[kv.Key] = v.FloatValue()
default:
stats[kv.Key] = v.String()
}
})
return stats
}
// Statistics for a node
type nodeStats struct {
Fields models.Fields
Tags models.Tags
Dimensions models.Dimensions
}
// Return a copy of the current node statistics.
// If if no groups have been seen yet a NilGroup will be created with zero stats.
func (n *node) nodeStatsByGroup() (stats map[models.GroupID]nodeStats) {
// Get the counts for just one output.
stats = make(map[models.GroupID]nodeStats)
if len(n.outs) > 0 {
n.outs[0].ReadGroupStats(func(g *edge.GroupStats) {
stats[g.GroupInfo.ID] = nodeStats{
Fields: models.Fields{
// A node's emitted count is the collected count of its output.
"emitted": g.Collected,
},
Tags: g.GroupInfo.Tags,
Dimensions: g.GroupInfo.Dimensions,
}
})
}
if len(stats) == 0 {
// If we have no groups/stats add nil group with emitted = 0
stats[""] = nodeStats{
Fields: models.Fields{
"emitted": int64(0),
},
}
}
return
}
// MaxDuration is a 64-bit int variable representing a duration in nanoseconds,that satisfies the expvar.Var interface.
// When setting a value it will only be set if it is greater than the current value.
type MaxDuration struct {
d int64
setter timer.Setter
}
func (v *MaxDuration) String() string {
return `"` + v.StringValue() + `"`
}
func (v *MaxDuration) StringValue() string {
return time.Duration(v.IntValue()).String()
}
func (v *MaxDuration) IntValue() int64 {
return atomic.LoadInt64(&v.d)
}
// Set sets value if it is greater than current value.
// If set was successful and a setter exists, will pass on value to setter.
func (v *MaxDuration) Set(next int64) {
for {
cur := v.IntValue()
if next > cur {
if atomic.CompareAndSwapInt64(&v.d, cur, next) {
if v.setter != nil {
v.setter.Set(next)
}
return
}
} else {
return
}
}
}