This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
/
handler.go
879 lines (780 loc) · 33.8 KB
/
handler.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
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
package task
import (
"context"
"fmt"
"runtime/debug"
"time"
"k8s.io/client-go/kubernetes"
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
pluginMachinery "github.com/flyteorg/flyteplugins/go/tasks/pluginmachinery"
"github.com/flyteorg/flyteplugins/go/tasks/pluginmachinery/catalog"
pluginCore "github.com/flyteorg/flyteplugins/go/tasks/pluginmachinery/core"
"github.com/flyteorg/flyteplugins/go/tasks/pluginmachinery/io"
"github.com/flyteorg/flyteplugins/go/tasks/pluginmachinery/ioutils"
pluginK8s "github.com/flyteorg/flyteplugins/go/tasks/pluginmachinery/k8s"
eventsErr "github.com/flyteorg/flytepropeller/events/errors"
"github.com/flyteorg/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
controllerConfig "github.com/flyteorg/flytepropeller/pkg/controller/config"
"github.com/flyteorg/flytepropeller/pkg/controller/executors"
"github.com/flyteorg/flytepropeller/pkg/controller/nodes/errors"
"github.com/flyteorg/flytepropeller/pkg/controller/nodes/handler"
"github.com/flyteorg/flytepropeller/pkg/controller/nodes/interfaces"
"github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/config"
"github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/resourcemanager"
rmConfig "github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/resourcemanager/config"
"github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/secretmanager"
"github.com/flyteorg/flytepropeller/pkg/utils"
"github.com/flyteorg/flytestdlib/contextutils"
"github.com/flyteorg/flytestdlib/logger"
"github.com/flyteorg/flytestdlib/promutils"
"github.com/flyteorg/flytestdlib/promutils/labeled"
"github.com/flyteorg/flytestdlib/storage"
"github.com/golang/protobuf/ptypes"
regErrors "github.com/pkg/errors"
)
const pluginContextKey = contextutils.Key("plugin")
type metrics struct {
pluginPanics labeled.Counter
unsupportedTaskType labeled.Counter
pluginExecutionLatency labeled.StopWatch
pluginQueueLatency labeled.StopWatch
// TODO We should have a metric to capture custom state size
scope promutils.Scope
}
type MetricKey = string
type taskMetrics struct {
taskSucceeded labeled.Counter
taskFailed labeled.Counter
}
type pluginRequestedTransition struct {
previouslyObserved bool
ttype handler.TransitionType
pInfo pluginCore.PhaseInfo
execInfo handler.ExecutionInfo
pluginState []byte
pluginStateVersion uint32
}
func getPluginMetricKey(pluginID, taskType string) string {
return taskType + "_" + pluginID
}
func (p *pluginRequestedTransition) CacheHit(outputPath storage.DataReference, deckPath *storage.DataReference, entry catalog.Entry) {
p.ttype = handler.TransitionTypeEphemeral
p.pInfo = pluginCore.PhaseInfoSuccess(nil)
p.ObserveSuccess(outputPath, deckPath, &event.TaskNodeMetadata{CacheStatus: entry.GetStatus().GetCacheStatus(), CatalogKey: entry.GetStatus().GetMetadata()})
}
func (p *pluginRequestedTransition) PopulateCacheInfo(entry catalog.Entry) {
p.execInfo.TaskNodeInfo = &handler.TaskNodeInfo{
TaskNodeMetadata: &event.TaskNodeMetadata{
CacheStatus: entry.GetStatus().GetCacheStatus(),
CatalogKey: entry.GetStatus().GetMetadata()},
}
}
// PopulateReservationInfo sets the ReservationStatus of a requested plugin transition based on the
// provided ReservationEntry.
func (p *pluginRequestedTransition) PopulateReservationInfo(entry catalog.ReservationEntry) {
if p.execInfo.TaskNodeInfo == nil {
p.execInfo.TaskNodeInfo = &handler.TaskNodeInfo{
TaskNodeMetadata: &event.TaskNodeMetadata{
ReservationStatus: entry.GetStatus(),
},
}
} else {
p.execInfo.TaskNodeInfo.TaskNodeMetadata.ReservationStatus = entry.GetStatus()
}
}
func (p *pluginRequestedTransition) ObservedTransitionAndState(trns pluginCore.Transition, pluginStateVersion uint32, pluginState []byte) {
p.ttype = ToTransitionType(trns.Type())
p.pInfo = trns.Info()
p.pluginState = pluginState
p.pluginStateVersion = pluginStateVersion
}
func (p *pluginRequestedTransition) ObservedExecutionError(executionError *io.ExecutionError, taskMetadata *event.TaskNodeMetadata) {
if executionError.IsRecoverable {
p.pInfo = pluginCore.PhaseInfoFailed(pluginCore.PhaseRetryableFailure, executionError.ExecutionError, p.pInfo.Info())
} else {
p.pInfo = pluginCore.PhaseInfoFailed(pluginCore.PhasePermanentFailure, executionError.ExecutionError, p.pInfo.Info())
}
if taskMetadata != nil {
p.execInfo.TaskNodeInfo = &handler.TaskNodeInfo{
TaskNodeMetadata: taskMetadata,
}
}
}
func (p *pluginRequestedTransition) ObservedFailure(taskMetadata *event.TaskNodeMetadata) {
if taskMetadata != nil {
p.execInfo.TaskNodeInfo = &handler.TaskNodeInfo{
TaskNodeMetadata: taskMetadata,
}
}
}
func (p *pluginRequestedTransition) IsPreviouslyObserved() bool {
return p.previouslyObserved
}
func (p *pluginRequestedTransition) TransitionPreviouslyRecorded() {
p.previouslyObserved = true
}
func (p *pluginRequestedTransition) FinalTaskEvent(input ToTaskExecutionEventInputs) (*event.TaskExecutionEvent, error) {
if p.previouslyObserved {
return nil, nil
}
input.Info = p.pInfo
return ToTaskExecutionEvent(input)
}
func (p *pluginRequestedTransition) ObserveSuccess(outputPath storage.DataReference, deckPath *storage.DataReference, taskMetadata *event.TaskNodeMetadata) {
p.execInfo.OutputInfo = &handler.OutputInfo{
OutputURI: outputPath,
DeckURI: deckPath,
}
p.execInfo.TaskNodeInfo = &handler.TaskNodeInfo{
TaskNodeMetadata: taskMetadata,
}
}
func (p *pluginRequestedTransition) FinalTransition(ctx context.Context) (handler.Transition, error) {
switch p.pInfo.Phase() {
case pluginCore.PhaseSuccess:
logger.Debugf(ctx, "Transitioning to Success")
return handler.DoTransition(p.ttype, handler.PhaseInfoSuccess(&p.execInfo)), nil
case pluginCore.PhaseRetryableFailure:
logger.Debugf(ctx, "Transitioning to RetryableFailure")
return handler.DoTransition(p.ttype, handler.PhaseInfoRetryableFailureErr(p.pInfo.Err(), &p.execInfo)), nil
case pluginCore.PhasePermanentFailure:
logger.Debugf(ctx, "Transitioning to Failure")
return handler.DoTransition(p.ttype, handler.PhaseInfoFailureErr(p.pInfo.Err(), &p.execInfo)), nil
case pluginCore.PhaseUndefined:
return handler.UnknownTransition, fmt.Errorf("error converting plugin phase, received [Undefined]")
}
logger.Debugf(ctx, "Task still running")
return handler.DoTransition(p.ttype, handler.PhaseInfoRunning(nil)), nil
}
// The plugin interface available especially for testing.
type PluginRegistryIface interface {
GetCorePlugins() []pluginCore.PluginEntry
GetK8sPlugins() []pluginK8s.PluginEntry
}
type taskType = string
type pluginID = string
type Handler struct {
catalog catalog.Client
asyncCatalog catalog.AsyncClient
defaultPlugins map[pluginCore.TaskType]pluginCore.Plugin
pluginsForType map[pluginCore.TaskType]map[pluginID]pluginCore.Plugin
taskMetricsMap map[MetricKey]*taskMetrics
defaultPlugin pluginCore.Plugin
metrics *metrics
pluginRegistry PluginRegistryIface
kubeClient pluginCore.KubeClient
kubeClientset kubernetes.Interface
secretManager pluginCore.SecretManager
resourceManager resourcemanager.BaseResourceManager
cfg *config.Config
pluginScope promutils.Scope
eventConfig *controllerConfig.EventConfig
clusterID string
}
func (t *Handler) FinalizeRequired() bool {
return true
}
func (t *Handler) setDefault(ctx context.Context, p pluginCore.Plugin) error {
if t.defaultPlugin != nil {
logger.Errorf(ctx, "cannot set plugin [%s] as default as plugin [%s] is already configured as default", p.GetID(), t.defaultPlugin.GetID())
} else {
logger.Infof(ctx, "Plugin [%s] registered as default plugin", p.GetID())
t.defaultPlugin = p
}
return nil
}
func (t *Handler) Setup(ctx context.Context, sCtx interfaces.SetupContext) error {
tSCtx := t.newSetupContext(sCtx)
// Create a new base resource negotiator
resourceManagerConfig := rmConfig.GetConfig()
newResourceManagerBuilder, err := resourcemanager.GetResourceManagerBuilderByType(ctx, resourceManagerConfig.Type, t.metrics.scope)
if err != nil {
return err
}
// Create the resource negotiator here
// and then convert it to proxies later and pass them to plugins
enabledPlugins, defaultForTaskTypes, err := WranglePluginsAndGenerateFinalList(ctx, &t.cfg.TaskPlugins, t.pluginRegistry, t.kubeClientset)
if err != nil {
logger.Errorf(ctx, "Failed to finalize enabled plugins. Error: %s", err)
return err
}
// Not every task type will have a default plugin specified in the flytepropeller config.
// That's fine, we resort to using the plugins' static RegisteredTaskTypes as a fallback further below.
fallbackTaskHandlerMap := make(map[taskType]map[pluginID]pluginCore.Plugin)
for _, p := range enabledPlugins {
// create a new resource registrar proxy for each plugin, and pass it into the plugin's LoadPlugin() via a setup context
pluginResourceNamespacePrefix := pluginCore.ResourceNamespace(newResourceManagerBuilder.GetID()).CreateSubNamespace(pluginCore.ResourceNamespace(p.ID))
sCtxFinal := newNameSpacedSetupCtx(
tSCtx, newResourceManagerBuilder.GetResourceRegistrar(pluginResourceNamespacePrefix), p.ID)
logger.Infof(ctx, "Loading Plugin [%s] ENABLED", p.ID)
cp, err := pluginCore.LoadPlugin(ctx, sCtxFinal, p)
if err != nil {
return regErrors.Wrapf(err, "failed to load plugin - %s", p.ID)
}
// For every default plugin for a task type specified in flytepropeller config we validate that the plugin's
// static definition includes that task type as something it is registered to handle.
for _, tt := range p.RegisteredTaskTypes {
for _, defaultTaskType := range defaultForTaskTypes[cp.GetID()] {
if defaultTaskType == tt {
if existingHandler, alreadyDefaulted := t.defaultPlugins[tt]; alreadyDefaulted && existingHandler.GetID() != cp.GetID() {
logger.Errorf(ctx, "TaskType [%s] has multiple default handlers specified: [%s] and [%s]",
tt, existingHandler.GetID(), cp.GetID())
return regErrors.New(fmt.Sprintf("TaskType [%s] has multiple default handlers specified: [%s] and [%s]",
tt, existingHandler.GetID(), cp.GetID()))
}
logger.Infof(ctx, "Plugin [%s] registered for TaskType [%s]", cp.GetID(), tt)
t.defaultPlugins[tt] = cp
}
}
pluginsForTaskType, ok := t.pluginsForType[tt]
if !ok {
pluginsForTaskType = make(map[pluginID]pluginCore.Plugin)
}
pluginsForTaskType[cp.GetID()] = cp
t.pluginsForType[tt] = pluginsForTaskType
fallbackMap, ok := fallbackTaskHandlerMap[tt]
if !ok {
fallbackMap = make(map[pluginID]pluginCore.Plugin)
}
fallbackMap[cp.GetID()] = cp
fallbackTaskHandlerMap[tt] = fallbackMap
}
if p.IsDefault {
if err := t.setDefault(ctx, cp); err != nil {
return err
}
}
}
// Read from the fallback task handler map for any remaining tasks without a defaultPlugins registered handler.
for taskType, registeredPlugins := range fallbackTaskHandlerMap {
if _, ok := t.defaultPlugins[taskType]; ok {
continue
}
if len(registeredPlugins) != 1 {
logger.Errorf(ctx, "Multiple plugins registered to handle task type: %s. ([%+v])", taskType, registeredPlugins)
return regErrors.New(fmt.Sprintf("Multiple plugins registered to handle task type: %s. ([%+v]). Use default-for-task-type config option to choose the desired plugin.", taskType, registeredPlugins))
}
for _, plugin := range registeredPlugins {
t.defaultPlugins[taskType] = plugin
}
}
rm, err := newResourceManagerBuilder.BuildResourceManager(ctx)
if err != nil {
logger.Errorf(ctx, "Failed to build a resource manager")
return err
}
t.resourceManager = rm
return nil
}
func (t Handler) ResolvePlugin(ctx context.Context, ttype string, executionConfig v1alpha1.ExecutionConfig) (pluginCore.Plugin, error) {
// If the workflow specifies plugin overrides, check to see if any of the specified plugins for that type are
// registered in this deployment of flytepropeller.
if len(executionConfig.TaskPluginImpls[ttype].PluginIDs) > 0 {
if len(t.pluginsForType[ttype]) > 0 {
pluginsForType := t.pluginsForType[ttype]
for _, pluginImplID := range executionConfig.TaskPluginImpls[ttype].PluginIDs {
pluginImpl := pluginsForType[pluginImplID]
if pluginImpl != nil {
logger.Debugf(ctx, "Plugin [%s] resolved for Handler type [%s]", pluginImpl.GetID(), ttype)
return pluginImpl, nil
}
}
}
// If we've exhausted the list of overridable plugins and no single implementation is found, fail fast if the
// task plugin overrides specify so.
if executionConfig.TaskPluginImpls[ttype].MissingPluginBehavior == admin.PluginOverride_FAIL {
return nil, fmt.Errorf("no matching plugin overrides defined for Handler type [%s]. Ignoring any defaultPlugins configured", ttype)
}
}
p, ok := t.defaultPlugins[ttype]
if ok {
logger.Debugf(ctx, "Plugin [%s] resolved for Handler type [%s]", p.GetID(), ttype)
return p, nil
}
if t.defaultPlugin != nil {
logger.Warnf(ctx, "No plugin found for Handler-type [%s], defaulting to [%s]", ttype, t.defaultPlugin.GetID())
return t.defaultPlugin, nil
}
return nil, fmt.Errorf("no plugin defined for Handler type [%s] and no defaultPlugin configured", ttype)
}
func validateTransition(transition pluginCore.Transition) error {
if info := transition.Info(); info.Err() == nil && info.Info() == nil {
return fmt.Errorf("transition doesn't have task info nor an execution error filled [%v]", transition)
}
return nil
}
func (t Handler) fetchPluginTaskMetrics(pluginID, taskType string) (*taskMetrics, error) {
metricNameKey, err := utils.GetSanitizedPrometheusKey(getPluginMetricKey(pluginID, taskType))
if err != nil {
return nil, err
}
if _, ok := t.taskMetricsMap[metricNameKey]; !ok {
t.taskMetricsMap[metricNameKey] = &taskMetrics{
taskSucceeded: labeled.NewCounter(metricNameKey+"_success",
"Task "+metricNameKey+" finished successfully", t.pluginScope, labeled.EmitUnlabeledMetric),
taskFailed: labeled.NewCounter(metricNameKey+"_failure",
"Task "+metricNameKey+" failed", t.pluginScope, labeled.EmitUnlabeledMetric),
}
}
return t.taskMetricsMap[metricNameKey], nil
}
func (t Handler) invokePlugin(ctx context.Context, p pluginCore.Plugin, tCtx *taskExecutionContext, ts handler.TaskNodeState) (*pluginRequestedTransition, error) {
pluginTrns := &pluginRequestedTransition{}
trns, err := func() (trns pluginCore.Transition, err error) {
defer func() {
if r := recover(); r != nil {
t.metrics.pluginPanics.Inc(ctx)
stack := debug.Stack()
logger.Errorf(ctx, "Panic in plugin[%s]", p.GetID())
err = fmt.Errorf("panic when executing a plugin [%s]. Stack: [%s]", p.GetID(), string(stack))
trns = pluginCore.UnknownTransition
}
}()
childCtx := context.WithValue(ctx, pluginContextKey, p.GetID())
trns, err = p.Handle(childCtx, tCtx)
return
}()
if err != nil {
logger.Warnf(ctx, "Runtime error from plugin [%s]. Error: %s", p.GetID(), err.Error())
return nil, regErrors.Wrapf(err, "failed to execute handle for plugin [%s]", p.GetID())
}
err = validateTransition(trns)
if err != nil {
logger.Errorf(ctx, "Invalid transition from plugin [%s]. Error: %s", p.GetID(), err.Error())
return nil, regErrors.Wrapf(err, "Invalid transition for plugin [%s]", p.GetID())
}
var b []byte
var v uint32
if tCtx.psm.newState != nil {
b = tCtx.psm.newState.Bytes()
v = uint32(tCtx.psm.newStateVersion)
} else {
// New state was not mutated, so we should write back the existing state
b = ts.PluginState
v = ts.PluginPhaseVersion
}
pluginTrns.ObservedTransitionAndState(trns, v, b)
// Emit the queue latency if the task has just transitioned from Queued to Running.
if ts.PluginPhase == pluginCore.PhaseQueued &&
(pluginTrns.pInfo.Phase() == pluginCore.PhaseInitializing || pluginTrns.pInfo.Phase() == pluginCore.PhaseRunning) {
if !ts.LastPhaseUpdatedAt.IsZero() {
t.metrics.pluginQueueLatency.Observe(ctx, ts.LastPhaseUpdatedAt, time.Now())
}
}
if pluginTrns.pInfo.Phase() == ts.PluginPhase {
if pluginTrns.pInfo.Version() == ts.PluginPhaseVersion {
logger.Debugf(ctx, "p+Version previously seen .. no event will be sent")
pluginTrns.TransitionPreviouslyRecorded()
return pluginTrns, nil
}
if pluginTrns.pInfo.Version() > uint32(t.cfg.MaxPluginPhaseVersions) {
logger.Errorf(ctx, "Too many Plugin p versions for plugin [%s]. p versions [%d/%d]", p.GetID(), pluginTrns.pInfo.Version(), t.cfg.MaxPluginPhaseVersions)
pluginTrns.ObservedExecutionError(&io.ExecutionError{
ExecutionError: &core.ExecutionError{
Code: "TooManyPluginPhaseVersions",
Message: fmt.Sprintf("Total number of phase versions exceeded for phase [%s] in Plugin "+
"[%s]. Attempted to set version to [%v], max allowed [%d]",
pluginTrns.pInfo.Phase().String(), p.GetID(), pluginTrns.pInfo.Version(), t.cfg.MaxPluginPhaseVersions),
},
IsRecoverable: false,
}, nil)
return pluginTrns, nil
}
}
if !pluginTrns.IsPreviouslyObserved() {
taskType := fmt.Sprintf("%v", ctx.Value(contextutils.TaskTypeKey))
taskMetric, err := t.fetchPluginTaskMetrics(p.GetID(), taskType)
if err != nil {
return nil, err
}
if pluginTrns.pInfo.Phase() == pluginCore.PhaseSuccess {
taskMetric.taskSucceeded.Inc(ctx)
}
if pluginTrns.pInfo.Phase() == pluginCore.PhasePermanentFailure || pluginTrns.pInfo.Phase() == pluginCore.PhaseRetryableFailure {
taskMetric.taskFailed.Inc(ctx)
}
}
switch pluginTrns.pInfo.Phase() {
case pluginCore.PhaseSuccess:
// -------------------------------------
// TODO: @kumare create Issue# Remove the code after we use closures to handle dynamic nodes
// This code only exists to support Dynamic tasks. Eventually dynamic tasks will use closure nodes to execute
// Until then we have to check if the Handler executed resulted in a dynamic node being generated, if so, then
// we will not check for outputs or call onTaskSuccess. The reason is that outputs have not yet been materialized.
// Output for the parent node will only get generated after the subtasks complete. We have to wait for the completion
// the dynamic.handler will call onTaskSuccess for the parent node
f, err := NewRemoteFutureFileReader(ctx, tCtx.ow.GetOutputPrefixPath(), tCtx.DataStore())
if err != nil {
return nil, regErrors.Wrapf(err, "failed to create remote file reader")
}
if ok, err := f.Exists(ctx); err != nil {
logger.Errorf(ctx, "failed to check existence of futures file")
return nil, regErrors.Wrapf(err, "failed to check existence of futures file")
} else if ok {
logger.Infof(ctx, "Futures file exists, this is a dynamic parent-Handler will not run onTaskSuccess")
return pluginTrns, nil
}
// End TODO
// -------------------------------------
logger.Debugf(ctx, "Task success detected, calling on Task success")
outputCommitter := ioutils.NewRemoteFileOutputWriter(ctx, tCtx.DataStore(), tCtx.OutputWriter())
ee, err := t.ValidateOutput(ctx, tCtx.NodeID(), tCtx.InputReader(), tCtx.ow.GetReader(),
outputCommitter, tCtx.ExecutionContext().GetExecutionConfig(), tCtx.tr)
if err != nil {
return nil, err
}
if ee != nil {
pluginTrns.ObservedExecutionError(ee,
&event.TaskNodeMetadata{
CheckpointUri: tCtx.ow.GetCheckpointPrefix().String(),
})
} else {
var deckURI *storage.DataReference
if tCtx.ow.GetReader() != nil {
exists, err := tCtx.ow.GetReader().DeckExists(ctx)
if err != nil {
logger.Errorf(ctx, "Failed to check deck file existence. Error: %v", err)
return pluginTrns, regErrors.Wrapf(err, "failed to check existence of deck file")
} else if exists {
deckURIValue := tCtx.ow.GetDeckPath()
deckURI = &deckURIValue
}
}
pluginTrns.ObserveSuccess(tCtx.ow.GetOutputPath(), deckURI,
&event.TaskNodeMetadata{
CheckpointUri: tCtx.ow.GetCheckpointPrefix().String(),
})
}
case pluginCore.PhaseRetryableFailure:
fallthrough
case pluginCore.PhasePermanentFailure:
pluginTrns.ObservedFailure(
&event.TaskNodeMetadata{
CheckpointUri: tCtx.ow.GetCheckpointPrefix().String(),
})
}
return pluginTrns, nil
}
func (t Handler) Handle(ctx context.Context, nCtx interfaces.NodeExecutionContext) (handler.Transition, error) {
ttype := nCtx.TaskReader().GetTaskType()
ctx = contextutils.WithTaskType(ctx, ttype)
p, err := t.ResolvePlugin(ctx, ttype, nCtx.ExecutionContext().GetExecutionConfig())
if err != nil {
return handler.UnknownTransition, errors.Wrapf(errors.UnsupportedTaskTypeError, nCtx.NodeID(), err, "unable to resolve plugin")
}
tCtx, err := t.newTaskExecutionContext(ctx, nCtx, p)
if err != nil {
return handler.UnknownTransition, errors.Wrapf(errors.IllegalStateError, nCtx.NodeID(), err, "unable to create Handler execution context")
}
ts := nCtx.NodeStateReader().GetTaskNodeState()
pluginTrns := &pluginRequestedTransition{}
// We will start with the assumption that catalog is disabled
pluginTrns.PopulateCacheInfo(catalog.NewFailedCatalogEntry(catalog.NewStatus(core.CatalogCacheStatus_CACHE_DISABLED, nil)))
// NOTE: Ideally we should use a taskExecution state for this handler. But, doing that will make it completely backwards incompatible
// So now we will derive this from the plugin phase
// TODO @kumare re-evaluate this decision
var inputs *core.LiteralMap
if ts.PluginPhase == pluginCore.PhaseUndefined && t.eventConfig.RawOutputPolicy == controllerConfig.RawOutputPolicyInline {
// The task should only reach undefined exactly once. Since we want to send the inputs inline at some point in the task execution flow (but not necessarily every event), we send them for this event transition only.
// The calls to read from the catalog below may call InputReader.Get subsequent times, but the underlying implementation uses a CachedInputReader that will
// not re-download the inputs for the duration of this Handle call.
tk, err := tCtx.tr.Read(ctx)
if err != nil {
logger.Errorf(ctx, "failed to read TaskTemplate, error :%s", err.Error())
return handler.UnknownTransition, err
}
if tk.Interface != nil && tk.Interface.Inputs != nil && len(tk.Interface.Inputs.Variables) > 0 {
inputs, err = nCtx.InputReader().Get(ctx)
if err != nil {
logger.Errorf(ctx, "failed to read inputs when checking catalog cache %w", err)
return handler.UnknownTransition, err
}
}
}
occurredAt := time.Now()
// STEP 2: If no cache-hit and not transitioning to PhaseWaitingForCache, then lets invoke the plugin and wait for a transition out of undefined
if pluginTrns.execInfo.TaskNodeInfo == nil || (pluginTrns.pInfo.Phase() != pluginCore.PhaseWaitingForCache &&
pluginTrns.execInfo.TaskNodeInfo.TaskNodeMetadata.CacheStatus != core.CatalogCacheStatus_CACHE_HIT) {
var err error
pluginTrns, err = t.invokePlugin(ctx, p, tCtx, ts)
if err != nil {
return handler.UnknownTransition, errors.Wrapf(errors.RuntimeExecutionError, nCtx.NodeID(), err, "failed during plugin execution")
}
if pluginTrns.IsPreviouslyObserved() {
logger.Debugf(ctx, "No state change for Task, previously observed same transition. Short circuiting.")
return pluginTrns.FinalTransition(ctx)
}
}
// STEP 3: Sanity check
if pluginTrns == nil {
// Still nil, this should never happen!!!
return handler.UnknownTransition, errors.Errorf(errors.IllegalStateError, nCtx.NodeID(), "plugin transition is not observed and no error as well.")
}
// STEP 4: Send buffered events!
logger.Debugf(ctx, "Sending buffered Task events.")
for _, ev := range tCtx.ber.GetAll(ctx) {
evInfo, err := ToTaskExecutionEvent(ToTaskExecutionEventInputs{
TaskExecContext: tCtx,
InputReader: nCtx.InputReader(),
Inputs: inputs,
EventConfig: t.eventConfig,
OutputWriter: tCtx.ow,
Info: ev,
NodeExecutionMetadata: nCtx.NodeExecutionMetadata(),
ExecContext: nCtx.ExecutionContext(),
TaskType: ttype,
PluginID: p.GetID(),
ResourcePoolInfo: tCtx.rm.GetResourcePoolInfo(),
ClusterID: t.clusterID,
OccurredAt: occurredAt,
})
if err != nil {
return handler.UnknownTransition, err
}
if err := nCtx.EventsRecorder().RecordTaskEvent(ctx, evInfo, t.eventConfig); err != nil {
logger.Errorf(ctx, "Event recording failed for Plugin [%s], eventPhase [%s], error :%s", p.GetID(), evInfo.Phase.String(), err.Error())
// Check for idempotency
// Check for terminate state error
return handler.UnknownTransition, err
}
}
// STEP 5: Send Transition events
logger.Debugf(ctx, "Sending transition event for plugin phase [%s]", pluginTrns.pInfo.Phase().String())
evInfo, err := pluginTrns.FinalTaskEvent(ToTaskExecutionEventInputs{
TaskExecContext: tCtx,
InputReader: nCtx.InputReader(),
Inputs: inputs,
EventConfig: t.eventConfig,
OutputWriter: tCtx.ow,
NodeExecutionMetadata: nCtx.NodeExecutionMetadata(),
ExecContext: nCtx.ExecutionContext(),
TaskType: ttype,
PluginID: p.GetID(),
ResourcePoolInfo: tCtx.rm.GetResourcePoolInfo(),
ClusterID: t.clusterID,
OccurredAt: occurredAt,
})
if err != nil {
logger.Errorf(ctx, "failed to convert plugin transition to TaskExecutionEvent. Error: %s", err.Error())
return handler.UnknownTransition, err
}
if evInfo != nil {
if err := nCtx.EventsRecorder().RecordTaskEvent(ctx, evInfo, t.eventConfig); err != nil {
// Check for idempotency
// Check for terminate state error
logger.Errorf(ctx, "failed to send event to Admin. error: %s", err.Error())
return handler.UnknownTransition, err
}
} else {
logger.Debugf(ctx, "Received no event to record.")
}
// STEP 6: Persist the plugin state
err = nCtx.NodeStateWriter().PutTaskNodeState(handler.TaskNodeState{
PluginState: pluginTrns.pluginState,
PluginStateVersion: pluginTrns.pluginStateVersion,
PluginPhase: pluginTrns.pInfo.Phase(),
PluginPhaseVersion: pluginTrns.pInfo.Version(),
LastPhaseUpdatedAt: time.Now(),
PreviousNodeExecutionCheckpointURI: ts.PreviousNodeExecutionCheckpointURI,
CleanupOnFailure: ts.CleanupOnFailure || pluginTrns.pInfo.CleanupOnFailure(),
})
if err != nil {
logger.Errorf(ctx, "Failed to store TaskNode state, err :%s", err.Error())
return handler.UnknownTransition, err
}
// increment parallelism if the final pluginTrns is not in a terminal state
if pluginTrns != nil && !pluginTrns.pInfo.Phase().IsTerminal() {
logger.Infof(ctx, "Parallelism now set to [%d].", nCtx.ExecutionContext().IncrementParallelism())
}
return pluginTrns.FinalTransition(ctx)
}
func (t *Handler) ValidateOutput(ctx context.Context, nodeID v1alpha1.NodeID, i io.InputReader,
r io.OutputReader, outputCommitter io.OutputWriter, executionConfig v1alpha1.ExecutionConfig,
tr ioutils.SimpleTaskReader) (*io.ExecutionError, error) {
tk, err := tr.Read(ctx)
if err != nil {
logger.Errorf(ctx, "Failed to read TaskTemplate, error :%s", err.Error())
return nil, err
}
iface := tk.Interface
outputsDeclared := iface != nil && iface.Outputs != nil && len(iface.Outputs.Variables) > 0
if r == nil {
if outputsDeclared {
// Whack! plugin did not return any outputs for this task
// Also When an error is observed, cache is automatically disabled
return &io.ExecutionError{
ExecutionError: &core.ExecutionError{
Code: "OutputsNotGenerated",
Message: "Output Reader was nil. Plugin/Platform problem.",
},
IsRecoverable: true,
}, nil
}
return nil, nil
}
// Reader exists, we can check for error, even if this task may not have any outputs declared
y, err := r.IsError(ctx)
if err != nil {
return nil, err
}
if y {
taskErr, err := r.ReadError(ctx)
if err != nil {
return nil, err
}
if taskErr.ExecutionError == nil {
taskErr.ExecutionError = &core.ExecutionError{Kind: core.ExecutionError_UNKNOWN, Code: "Unknown", Message: "Unknown"}
}
return &taskErr, nil
}
// Do this if we have outputs declared for the Handler interface!
if !outputsDeclared {
return nil, nil
}
ok, err := r.Exists(ctx)
if err != nil {
logger.Errorf(ctx, "Failed to check if the output file exists. Error: %s", err.Error())
return nil, err
}
if !ok {
// Does not exist
return &io.ExecutionError{
ExecutionError: &core.ExecutionError{
Code: "OutputsNotFound",
Message: "Outputs not generated by task execution",
},
IsRecoverable: true,
}, nil
}
if !r.IsFile(ctx) {
// Read output and write to file
// No need to check for Execution Error here as we have done so above this block.
err = outputCommitter.Put(ctx, r)
if err != nil {
logger.Errorf(ctx, "Failed to commit output to remote location. Error: %v", err)
return nil, err
}
}
return nil, nil
}
func (t Handler) Abort(ctx context.Context, nCtx interfaces.NodeExecutionContext, reason string) error {
taskNodeState := nCtx.NodeStateReader().GetTaskNodeState()
currentPhase := taskNodeState.PluginPhase
logger.Debugf(ctx, "Abort invoked with phase [%v]", currentPhase)
if currentPhase.IsTerminal() && !(currentPhase.IsFailure() && taskNodeState.CleanupOnFailure) {
logger.Debugf(ctx, "Returning immediately from Abort since task is already in terminal phase.", currentPhase)
return nil
}
ttype := nCtx.TaskReader().GetTaskType()
p, err := t.ResolvePlugin(ctx, ttype, nCtx.ExecutionContext().GetExecutionConfig())
if err != nil {
return errors.Wrapf(errors.UnsupportedTaskTypeError, nCtx.NodeID(), err, "unable to resolve plugin")
}
tCtx, err := t.newTaskExecutionContext(ctx, nCtx, p)
if err != nil {
return errors.Wrapf(errors.IllegalStateError, nCtx.NodeID(), err, "unable to create Handler execution context")
}
err = func() (err error) {
defer func() {
if r := recover(); r != nil {
t.metrics.pluginPanics.Inc(ctx)
stack := debug.Stack()
logger.Errorf(ctx, "Panic in plugin.Abort for TaskType [%s]", ttype)
err = fmt.Errorf("panic when executing a plugin for TaskType [%s]. Stack: [%s]", ttype, string(stack))
}
}()
childCtx := context.WithValue(ctx, pluginContextKey, p.GetID())
err = p.Abort(childCtx, tCtx)
return
}()
if err != nil {
logger.Errorf(ctx, "Abort failed when calling plugin abort.")
return err
}
taskExecID := tCtx.TaskExecutionMetadata().GetTaskExecutionID().GetID()
evRecorder := nCtx.EventsRecorder()
nodeExecutionID, err := getParentNodeExecIDForTask(&taskExecID, nCtx.ExecutionContext())
if err != nil {
return err
}
if err := evRecorder.RecordTaskEvent(ctx, &event.TaskExecutionEvent{
TaskId: taskExecID.TaskId,
ParentNodeExecutionId: nodeExecutionID,
RetryAttempt: nCtx.CurrentAttempt(),
Phase: core.TaskExecution_ABORTED,
OccurredAt: ptypes.TimestampNow(),
OutputResult: &event.TaskExecutionEvent_Error{
Error: &core.ExecutionError{
Code: "Task Aborted",
Message: reason,
}},
}, t.eventConfig); err != nil && !eventsErr.IsNotFound(err) && !eventsErr.IsEventIncompatibleClusterError(err) {
// If a prior workflow/node/task execution event has failed because of an invalid cluster error, don't stall the abort
// at this point in the clean-up.
logger.Errorf(ctx, "failed to send event to Admin. error: %s", err.Error())
return err
}
return nil
}
func (t Handler) Finalize(ctx context.Context, nCtx interfaces.NodeExecutionContext) error {
logger.Debugf(ctx, "Finalize invoked.")
ttype := nCtx.TaskReader().GetTaskType()
p, err := t.ResolvePlugin(ctx, ttype, nCtx.ExecutionContext().GetExecutionConfig())
if err != nil {
return errors.Wrapf(errors.UnsupportedTaskTypeError, nCtx.NodeID(), err, "unable to resolve plugin")
}
tCtx, err := t.newTaskExecutionContext(ctx, nCtx, p)
if err != nil {
return errors.Wrapf(errors.IllegalStateError, nCtx.NodeID(), err, "unable to create Handler execution context")
}
return func() (err error) {
defer func() {
if r := recover(); r != nil {
t.metrics.pluginPanics.Inc(ctx)
stack := debug.Stack()
logger.Errorf(ctx, "Panic in plugin.Finalize for TaskType [%s]", ttype)
err = fmt.Errorf("panic when executing a plugin for TaskType [%s]. Stack: [%s]", ttype, string(stack))
}
}()
childCtx := context.WithValue(ctx, pluginContextKey, p.GetID())
err = p.Finalize(childCtx, tCtx)
return
}()
}
func New(ctx context.Context, kubeClient executors.Client, kubeClientset kubernetes.Interface, client catalog.Client,
eventConfig *controllerConfig.EventConfig, clusterID string, scope promutils.Scope) (*Handler, error) {
// TODO New should take a pointer
async, err := catalog.NewAsyncClient(client, *catalog.GetConfig(), scope.NewSubScope("async_catalog"))
if err != nil {
return nil, err
}
if err = async.Start(ctx); err != nil {
return nil, err
}
cfg := config.GetConfig()
return &Handler{
pluginRegistry: pluginMachinery.PluginRegistry(),
defaultPlugins: make(map[pluginCore.TaskType]pluginCore.Plugin),
pluginsForType: make(map[pluginCore.TaskType]map[pluginID]pluginCore.Plugin),
taskMetricsMap: make(map[MetricKey]*taskMetrics),
metrics: &metrics{
pluginPanics: labeled.NewCounter("plugin_panic", "Task plugin paniced when trying to execute a Handler.", scope),
unsupportedTaskType: labeled.NewCounter("unsupported_tasktype", "No Handler plugin configured for Handler type", scope),
pluginExecutionLatency: labeled.NewStopWatch("plugin_exec_latency", "Time taken to invoke plugin for one round", time.Microsecond, scope),
pluginQueueLatency: labeled.NewStopWatch("plugin_queue_latency", "Time spent by plugin in queued phase", time.Microsecond, scope),
scope: scope,
},
pluginScope: scope.NewSubScope("plugin"),
kubeClient: kubeClient,
kubeClientset: kubeClientset,
catalog: client,
asyncCatalog: async,
resourceManager: nil,
secretManager: secretmanager.NewFileEnvSecretManager(secretmanager.GetConfig()),
cfg: cfg,
eventConfig: eventConfig,
clusterID: clusterID,
}, nil
}