forked from influxdata/kapacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
task_master.go
712 lines (622 loc) · 16.3 KB
/
task_master.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
package kapacitor
import (
"errors"
"fmt"
"log"
"sync"
"time"
imodels "github.com/influxdata/influxdb/models"
"github.com/influxdata/kapacitor/expvar"
"github.com/influxdata/kapacitor/influxdb"
"github.com/influxdata/kapacitor/models"
"github.com/influxdata/kapacitor/pipeline"
"github.com/influxdata/kapacitor/services/httpd"
k8s "github.com/influxdata/kapacitor/services/k8s/client"
"github.com/influxdata/kapacitor/tick"
"github.com/influxdata/kapacitor/tick/stateful"
"github.com/influxdata/kapacitor/timer"
"github.com/influxdata/kapacitor/udf"
)
const (
statPointsReceived = "points_received"
MainTaskMaster = "main"
)
type LogService interface {
NewLogger(prefix string, flag int) *log.Logger
}
type UDFService interface {
List() []string
Info(name string) (udf.Info, bool)
Create(name string, l *log.Logger, abortCallback func()) (udf.Interface, error)
}
var ErrTaskMasterClosed = errors.New("TaskMaster is closed")
var ErrTaskMasterOpen = errors.New("TaskMaster is open")
// An execution framework for a set of tasks.
type TaskMaster struct {
// Unique id for this task master instance
id string
HTTPDService interface {
AddRoutes([]httpd.Route) error
DelRoutes([]httpd.Route)
URL() string
}
TaskStore interface {
SaveSnapshot(id string, snapshot *TaskSnapshot) error
HasSnapshot(id string) bool
LoadSnapshot(id string) (*TaskSnapshot, error)
}
DeadmanService pipeline.DeadmanService
UDFService UDFService
InfluxDBService interface {
NewNamedClient(name string) (influxdb.Client, error)
}
SMTPService interface {
Global() bool
StateChangesOnly() bool
SendMail(to []string, subject string, msg string) error
}
OpsGenieService interface {
Global() bool
Alert(teams []string, recipients []string, messageType, message, entityID string, t time.Time, details interface{}) error
}
VictorOpsService interface {
Global() bool
Alert(routingKey, messageType, message, entityID string, t time.Time, extra interface{}) error
}
PagerDutyService interface {
Global() bool
Alert(serviceKey, incidentKey, desc string, level AlertLevel, details interface{}) error
}
SlackService interface {
Global() bool
StateChangesOnly() bool
Alert(channel, message, username, iconEmoji string, level AlertLevel) error
}
TelegramService interface {
Global() bool
StateChangesOnly() bool
Alert(chatId, parseMode, message string, disableWebPagePreview, disableNotification bool) error
}
HipChatService interface {
Global() bool
StateChangesOnly() bool
Alert(room, token, message string, level AlertLevel) error
}
AlertaService interface {
Alert(token,
resource,
event,
environment,
severity,
group,
value,
message,
origin string,
service []string,
data interface{}) error
}
SensuService interface {
Alert(name, output string, level AlertLevel) error
}
TalkService interface {
Alert(title, text string) error
}
TimingService interface {
NewTimer(timer.Setter) timer.Timer
}
K8sService interface {
Client() (k8s.Client, error)
}
LogService LogService
DefaultRetentionPolicy string
// Incoming streams
writePointsIn StreamCollector
// Forks of incoming streams
// We are mapping from (db, rp, measurement) to map of task ids to their edges
// The outer map (from dbrp&measurement) is for fast access on forkPoint
// While the inner map is for handling fork deletions better (see taskToForkKeys)
forks map[forkKey]map[string]*Edge
// Stats for number of points each fork has received
forkStats map[forkKey]*expvar.Int
// Task to fork keys is map to help in deletes, in deletes
// we have only the task id, and they are called after the task is deleted from TaskMaster.tasks
taskToForkKeys map[string][]forkKey
// Set of incoming batches
batches map[string][]BatchCollector
// Executing tasks
tasks map[string]*ExecutingTask
logger *log.Logger
closed bool
drained bool
mu sync.RWMutex
wg sync.WaitGroup
}
type forkKey struct {
Database string
RetentionPolicy string
Measurement string
}
// Create a new Executor with a given clock.
func NewTaskMaster(id string, l LogService) *TaskMaster {
return &TaskMaster{
id: id,
forks: make(map[forkKey]map[string]*Edge),
forkStats: make(map[forkKey]*expvar.Int),
taskToForkKeys: make(map[string][]forkKey),
batches: make(map[string][]BatchCollector),
tasks: make(map[string]*ExecutingTask),
LogService: l,
logger: l.NewLogger(fmt.Sprintf("[task_master:%s] ", id), log.LstdFlags),
closed: true,
TimingService: noOpTimingService{},
}
}
// Returns a new TaskMaster instance with the same services as the current one.
func (tm *TaskMaster) New(id string) *TaskMaster {
n := NewTaskMaster(id, tm.LogService)
n.DefaultRetentionPolicy = tm.DefaultRetentionPolicy
n.HTTPDService = tm.HTTPDService
n.TaskStore = tm.TaskStore
n.DeadmanService = tm.DeadmanService
n.UDFService = tm.UDFService
n.InfluxDBService = tm.InfluxDBService
n.SMTPService = tm.SMTPService
n.OpsGenieService = tm.OpsGenieService
n.VictorOpsService = tm.VictorOpsService
n.PagerDutyService = tm.PagerDutyService
n.SlackService = tm.SlackService
n.TelegramService = tm.TelegramService
n.HipChatService = tm.HipChatService
n.AlertaService = tm.AlertaService
n.SensuService = tm.SensuService
n.TalkService = tm.TalkService
n.TimingService = tm.TimingService
n.K8sService = tm.K8sService
return n
}
func (tm *TaskMaster) Open() (err error) {
tm.mu.Lock()
defer tm.mu.Unlock()
if !tm.closed {
return ErrTaskMasterOpen
}
tm.closed = false
tm.drained = false
tm.writePointsIn, err = tm.stream("write_points")
if err != nil {
tm.closed = true
return
}
tm.logger.Println("I! opened")
return
}
func (tm *TaskMaster) StopTasks() {
tm.mu.Lock()
defer tm.mu.Unlock()
for _, et := range tm.tasks {
tm.stopTask(et.Task.ID)
}
}
func (tm *TaskMaster) Close() error {
tm.Drain()
tm.mu.Lock()
defer tm.mu.Unlock()
if tm.closed {
return ErrTaskMasterClosed
}
tm.closed = true
for _, et := range tm.tasks {
tm.stopTask(et.Task.ID)
}
tm.logger.Println("I! closed")
return nil
}
func (tm *TaskMaster) Drain() {
tm.waitForForks()
tm.mu.Lock()
defer tm.mu.Unlock()
// TODO(yosia): handle this thing ;)
for id, _ := range tm.taskToForkKeys {
tm.delFork(id)
}
}
// Create a new template in the context of a TaskMaster
func (tm *TaskMaster) NewTemplate(
id,
script string,
tt TaskType,
) (*Template, error) {
t := &Template{
id: id,
}
scope := tm.CreateTICKScope()
var srcEdge pipeline.EdgeType
switch tt {
case StreamTask:
srcEdge = pipeline.StreamEdge
case BatchTask:
srcEdge = pipeline.BatchEdge
}
tp, err := pipeline.CreateTemplatePipeline(script, srcEdge, scope, tm.DeadmanService)
if err != nil {
return nil, err
}
t.tp = tp
return t, nil
}
// Create a new task in the context of a TaskMaster
func (tm *TaskMaster) NewTask(
id,
script string,
tt TaskType,
dbrps []DBRP,
snapshotInterval time.Duration,
vars map[string]tick.Var,
) (*Task, error) {
t := &Task{
ID: id,
Type: tt,
DBRPs: dbrps,
SnapshotInterval: snapshotInterval,
}
scope := tm.CreateTICKScope()
var srcEdge pipeline.EdgeType
switch tt {
case StreamTask:
srcEdge = pipeline.StreamEdge
case BatchTask:
srcEdge = pipeline.BatchEdge
}
p, err := pipeline.CreatePipeline(script, srcEdge, scope, tm.DeadmanService, vars)
if err != nil {
return nil, err
}
// A task will always have a stream or batch node.
// If it doesn't have anything more then the task does nothing with the data.
if p.Len() <= 1 {
return nil, fmt.Errorf("task does nothing")
}
t.Pipeline = p
return t, nil
}
func (tm *TaskMaster) waitForForks() {
if tm.drained {
return
}
tm.drained = true
tm.writePointsIn.Close()
tm.wg.Wait()
}
func (tm *TaskMaster) CreateTICKScope() *stateful.Scope {
scope := stateful.NewScope()
scope.Set("time", groupByTime)
// Add dynamic methods to the scope for UDFs
if tm.UDFService != nil {
for _, f := range tm.UDFService.List() {
f := f
info, _ := tm.UDFService.Info(f)
scope.SetDynamicMethod(
f,
stateful.DynamicMethod(func(self interface{}, args ...interface{}) (interface{}, error) {
parent, ok := self.(pipeline.Node)
if !ok {
return nil, fmt.Errorf("cannot call %s on %T", f, self)
}
udf := pipeline.NewUDF(
parent,
f,
info.Wants,
info.Provides,
info.Options,
)
return udf, nil
}),
)
}
}
return scope
}
func (tm *TaskMaster) StartTask(t *Task) (*ExecutingTask, error) {
tm.mu.Lock()
defer tm.mu.Unlock()
if tm.closed {
return nil, errors.New("task master is closed cannot start a task")
}
tm.logger.Println("D! Starting task:", t.ID)
et, err := NewExecutingTask(tm, t)
if err != nil {
return nil, err
}
var ins []*Edge
switch et.Task.Type {
case StreamTask:
e, err := tm.newFork(et.Task.ID, et.Task.DBRPs, et.Task.Measurements())
if err != nil {
return nil, err
}
ins = []*Edge{e}
case BatchTask:
count, err := et.BatchCount()
if err != nil {
return nil, err
}
ins = make([]*Edge, count)
for i := 0; i < count; i++ {
in := newEdge(t.ID, "batch", fmt.Sprintf("batch%d", i), pipeline.BatchEdge, defaultEdgeBufferSize, tm.LogService)
ins[i] = in
tm.batches[t.ID] = append(tm.batches[t.ID], in)
}
}
var snapshot *TaskSnapshot
if tm.TaskStore.HasSnapshot(t.ID) {
snapshot, err = tm.TaskStore.LoadSnapshot(t.ID)
if err != nil {
return nil, err
}
}
err = et.start(ins, snapshot)
if err != nil {
return nil, err
}
tm.tasks[et.Task.ID] = et
tm.logger.Println("I! Started task:", t.ID)
tm.logger.Println("D!", string(t.Dot()))
return et, nil
}
func (tm *TaskMaster) BatchCollectors(id string) []BatchCollector {
return tm.batches[id]
}
func (tm *TaskMaster) StopTask(id string) error {
tm.mu.Lock()
defer tm.mu.Unlock()
return tm.stopTask(id)
}
// internal stopTask function. The caller must have acquired
// the lock in order to call this function
func (tm *TaskMaster) stopTask(id string) (err error) {
if et, ok := tm.tasks[id]; ok {
delete(tm.tasks, id)
switch et.Task.Type {
case StreamTask:
tm.delFork(id)
case BatchTask:
delete(tm.batches, id)
}
err = et.stop()
if err != nil {
tm.logger.Println("E! Stopped task:", id, err)
} else {
tm.logger.Println("I! Stopped task:", id)
}
}
return
}
func (tm *TaskMaster) IsExecuting(id string) bool {
tm.mu.RLock()
defer tm.mu.RUnlock()
_, executing := tm.tasks[id]
return executing
}
func (tm *TaskMaster) ExecutionStats(id string) (ExecutionStats, error) {
tm.mu.RLock()
defer tm.mu.RUnlock()
task, executing := tm.tasks[id]
if !executing {
return ExecutionStats{}, nil
}
return task.ExecutionStats()
}
func (tm *TaskMaster) ExecutingDot(id string, labels bool) string {
tm.mu.RLock()
defer tm.mu.RUnlock()
et, executing := tm.tasks[id]
if executing {
return string(et.EDot(labels))
}
return ""
}
func (tm *TaskMaster) Stream(name string) (StreamCollector, error) {
tm.mu.Lock()
defer tm.mu.Unlock()
return tm.stream(name)
}
func (tm *TaskMaster) stream(name string) (StreamCollector, error) {
if tm.closed {
return nil, ErrTaskMasterClosed
}
in := newEdge(fmt.Sprintf("task_master:%s", tm.id), name, "stream", pipeline.StreamEdge, defaultEdgeBufferSize, tm.LogService)
tm.drained = false
tm.wg.Add(1)
go tm.runForking(in)
return in, nil
}
func (tm *TaskMaster) runForking(in *Edge) {
defer tm.wg.Done()
for p, ok := in.NextPoint(); ok; p, ok = in.NextPoint() {
tm.forkPoint(p)
}
}
func (tm *TaskMaster) forkPoint(p models.Point) {
tm.mu.RLock()
locked := true
defer func() {
if locked {
tm.mu.RUnlock()
}
}()
// Create the fork keys - which is (db, rp, measurement)
key := forkKey{
Database: p.Database,
RetentionPolicy: p.RetentionPolicy,
Measurement: p.Name,
}
// If we have empty measurement in this db,rp we need to send it all
// the points
emptyMeasurementKey := forkKey{
Database: p.Database,
RetentionPolicy: p.RetentionPolicy,
Measurement: "",
}
// Merge the results to the forks map
for _, edge := range tm.forks[key] {
edge.CollectPoint(p)
}
for _, edge := range tm.forks[emptyMeasurementKey] {
edge.CollectPoint(p)
}
c, ok := tm.forkStats[key]
if !ok {
// Release read lock
tm.mu.RUnlock()
locked = false
// Get write lock
tm.mu.Lock()
// Now with write lock check again
c, ok = tm.forkStats[key]
if !ok {
// Create statistics
c = &expvar.Int{}
tm.forkStats[key] = c
}
tm.mu.Unlock()
tags := map[string]string{
"task_master": tm.id,
"database": key.Database,
"retention_policy": key.RetentionPolicy,
"measurement": key.Measurement,
}
_, statMap := NewStatistics("ingress", tags)
statMap.Set(statPointsReceived, c)
}
c.Add(1)
}
func (tm *TaskMaster) WritePoints(database, retentionPolicy string, consistencyLevel imodels.ConsistencyLevel, points []imodels.Point) error {
if tm.closed {
return ErrTaskMasterClosed
}
if retentionPolicy == "" {
retentionPolicy = tm.DefaultRetentionPolicy
}
for _, mp := range points {
p := models.Point{
Database: database,
RetentionPolicy: retentionPolicy,
Name: mp.Name(),
Group: models.NilGroup,
Tags: models.Tags(mp.Tags().Map()),
Fields: models.Fields(mp.Fields()),
Time: mp.Time(),
}
err := tm.writePointsIn.CollectPoint(p)
if err != nil {
return err
}
}
return nil
}
func (tm *TaskMaster) NewFork(taskName string, dbrps []DBRP, measurements []string) (*Edge, error) {
tm.mu.Lock()
defer tm.mu.Unlock()
return tm.newFork(taskName, dbrps, measurements)
}
func forkKeys(dbrps []DBRP, measurements []string) []forkKey {
keys := make([]forkKey, 0)
for _, dbrp := range dbrps {
for _, measurement := range measurements {
key := forkKey{
RetentionPolicy: dbrp.RetentionPolicy,
Database: dbrp.Database,
Measurement: measurement,
}
keys = append(keys, key)
}
}
return keys
}
// internal newFork, must have acquired lock before calling.
func (tm *TaskMaster) newFork(taskName string, dbrps []DBRP, measurements []string) (*Edge, error) {
if tm.closed {
return nil, ErrTaskMasterClosed
}
e := newEdge(taskName, "stream", "stream0", pipeline.StreamEdge, defaultEdgeBufferSize, tm.LogService)
for _, key := range forkKeys(dbrps, measurements) {
tm.taskToForkKeys[taskName] = append(tm.taskToForkKeys[taskName], key)
// Add the task to the tasksMap if it doesn't exists
tasksMap, ok := tm.forks[key]
if !ok {
tasksMap = make(map[string]*Edge, 0)
}
// Add the edge to task map
tasksMap[taskName] = e
// update the task map in the forks
tm.forks[key] = tasksMap
}
return e, nil
}
func (tm *TaskMaster) DelFork(id string) {
tm.mu.Lock()
defer tm.mu.Unlock()
tm.delFork(id)
}
// internal delFork function, must have lock to call
func (tm *TaskMaster) delFork(id string) {
// mark if we already closed the edge because the edge is replicated
// by it's fork keys (db,rp,measurement)
isEdgeClosed := false
// Find the fork keys
for _, key := range tm.taskToForkKeys[id] {
// check if the edge exists
edge, ok := tm.forks[key][id]
if ok {
// Only close the edge if we are already didn't closed it
if edge != nil && !isEdgeClosed {
isEdgeClosed = true
edge.Close()
}
// remove the task in fork map
delete(tm.forks[key], id)
}
}
// remove mapping from task id to it's keys
delete(tm.taskToForkKeys, id)
}
func (tm *TaskMaster) SnapshotTask(id string) (*TaskSnapshot, error) {
tm.mu.RLock()
et, ok := tm.tasks[id]
tm.mu.RUnlock()
if ok {
return et.Snapshot()
}
return nil, fmt.Errorf("task %s is not running or does not exist", id)
}
type noOpTimingService struct{}
func (noOpTimingService) NewTimer(timer.Setter) timer.Timer {
return timer.NewNoOp()
}
type TaskMasterLookup struct {
sync.Mutex
taskMasters map[string]*TaskMaster
}
func NewTaskMasterLookup() *TaskMasterLookup {
return &TaskMasterLookup{
taskMasters: make(map[string]*TaskMaster),
}
}
func (tml *TaskMasterLookup) Get(id string) *TaskMaster {
tml.Lock()
defer tml.Unlock()
return tml.taskMasters[id]
}
func (tml *TaskMasterLookup) Main() *TaskMaster {
return tml.Get(MainTaskMaster)
}
func (tml *TaskMasterLookup) Set(tm *TaskMaster) {
tml.Lock()
defer tml.Unlock()
tml.taskMasters[tm.id] = tm
}
func (tml *TaskMasterLookup) Delete(tm *TaskMaster) {
tml.Lock()
defer tml.Unlock()
delete(tml.taskMasters, tm.id)
}