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 63
/
Copy pathnode_execution_manager.go
592 lines (533 loc) · 23.9 KB
/
node_execution_manager.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
package impl
import (
"context"
"strconv"
cloudeventInterfaces "github.com/flyteorg/flyteadmin/pkg/async/cloudevent/interfaces"
"github.com/flyteorg/flytestdlib/promutils/labeled"
eventWriter "github.com/flyteorg/flyteadmin/pkg/async/events/interfaces"
notificationInterfaces "github.com/flyteorg/flyteadmin/pkg/async/notifications/interfaces"
"github.com/golang/protobuf/proto"
"github.com/flyteorg/flytestdlib/storage"
"github.com/flyteorg/flytestdlib/contextutils"
"github.com/flyteorg/flyteadmin/pkg/manager/impl/shared"
"github.com/flyteorg/flytestdlib/promutils"
"github.com/prometheus/client_golang/prometheus"
"github.com/flyteorg/flytestdlib/logger"
"github.com/flyteorg/flyteadmin/pkg/common"
"github.com/flyteorg/flyteadmin/pkg/manager/impl/validation"
"fmt"
dataInterfaces "github.com/flyteorg/flyteadmin/pkg/data/interfaces"
"github.com/flyteorg/flyteadmin/pkg/errors"
"github.com/flyteorg/flyteadmin/pkg/manager/impl/util"
"github.com/flyteorg/flyteadmin/pkg/manager/interfaces"
repoInterfaces "github.com/flyteorg/flyteadmin/pkg/repositories/interfaces"
"github.com/flyteorg/flyteadmin/pkg/repositories/models"
"github.com/flyteorg/flyteadmin/pkg/repositories/transformers"
runtimeInterfaces "github.com/flyteorg/flyteadmin/pkg/runtime/interfaces"
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
"google.golang.org/grpc/codes"
)
type nodeExecutionMetrics struct {
Scope promutils.Scope
ActiveNodeExecutions prometheus.Gauge
NodeExecutionsCreated prometheus.Counter
NodeExecutionsTerminated labeled.Counter
NodeExecutionEventsCreated prometheus.Counter
MissingWorkflowExecution prometheus.Counter
ClosureSizeBytes prometheus.Summary
NodeExecutionInputBytes prometheus.Summary
NodeExecutionOutputBytes prometheus.Summary
PublishEventError prometheus.Counter
}
type NodeExecutionManager struct {
db repoInterfaces.Repository
config runtimeInterfaces.Configuration
storagePrefix []string
storageClient *storage.DataStore
metrics nodeExecutionMetrics
urlData dataInterfaces.RemoteURLInterface
eventPublisher notificationInterfaces.Publisher
cloudEventPublisher cloudeventInterfaces.Publisher
dbEventWriter eventWriter.NodeExecutionEventWriter
}
type updateNodeExecutionStatus int
const (
updateSucceeded updateNodeExecutionStatus = iota
updateFailed
alreadyInTerminalStatus
)
var isParent = common.NewMapFilter(map[string]interface{}{
shared.ParentTaskExecutionID: nil,
shared.ParentID: nil,
})
func getNodeExecutionContext(ctx context.Context, identifier *core.NodeExecutionIdentifier) context.Context {
ctx = contextutils.WithProjectDomain(ctx, identifier.ExecutionId.Project, identifier.ExecutionId.Domain)
ctx = contextutils.WithExecutionID(ctx, identifier.ExecutionId.Name)
return contextutils.WithNodeID(ctx, identifier.NodeId)
}
func (m *NodeExecutionManager) createNodeExecutionWithEvent(
ctx context.Context, request *admin.NodeExecutionEventRequest, dynamicWorkflowRemoteClosureReference string) error {
var parentTaskExecutionID *uint
if request.Event.ParentTaskMetadata != nil {
taskExecutionModel, err := util.GetTaskExecutionModel(ctx, m.db, request.Event.ParentTaskMetadata.Id)
if err != nil {
return err
}
parentTaskExecutionID = &taskExecutionModel.ID
}
var parentID *uint
if request.Event.ParentNodeMetadata != nil {
parentNodeExecutionModel, err := util.GetNodeExecutionModel(ctx, m.db, &core.NodeExecutionIdentifier{
ExecutionId: request.Event.Id.ExecutionId,
NodeId: request.Event.ParentNodeMetadata.NodeId,
})
if err != nil {
logger.Errorf(ctx, "failed to fetch node execution for the parent node: %v %s with err",
request.Event.Id.ExecutionId, request.Event.ParentNodeMetadata.NodeId, err)
return err
}
parentID = &parentNodeExecutionModel.ID
}
nodeExecutionModel, err := transformers.CreateNodeExecutionModel(ctx, transformers.ToNodeExecutionModelInput{
Request: request,
ParentTaskExecutionID: parentTaskExecutionID,
ParentID: parentID,
DynamicWorkflowRemoteClosure: dynamicWorkflowRemoteClosureReference,
InlineEventDataPolicy: m.config.ApplicationConfiguration().GetRemoteDataConfig().InlineEventDataPolicy,
StorageClient: m.storageClient,
})
if err != nil {
logger.Debugf(ctx, "failed to create node execution model for event request: %s with err: %v",
request.RequestId, err)
return err
}
if err := m.db.NodeExecutionRepo().Create(ctx, nodeExecutionModel); err != nil {
logger.Debugf(ctx, "Failed to create node execution with id [%+v] and model [%+v] "+
"with err %v", request.Event.Id, nodeExecutionModel, err)
return err
}
m.metrics.ClosureSizeBytes.Observe(float64(len(nodeExecutionModel.Closure)))
return nil
}
func (m *NodeExecutionManager) updateNodeExecutionWithEvent(
ctx context.Context, request *admin.NodeExecutionEventRequest, nodeExecutionModel *models.NodeExecution,
dynamicWorkflowRemoteClosureReference string) (updateNodeExecutionStatus, error) {
// If we have an existing execution, check if the phase change is valid
nodeExecPhase := core.NodeExecution_Phase(core.NodeExecution_Phase_value[nodeExecutionModel.Phase])
if nodeExecPhase == request.Event.Phase {
logger.Debugf(ctx, "This phase was already recorded %v for %+v", nodeExecPhase.String(), request.Event.Id)
return updateFailed, errors.NewFlyteAdminErrorf(codes.AlreadyExists,
"This phase was already recorded %v for %+v", nodeExecPhase.String(), request.Event.Id)
} else if common.IsNodeExecutionTerminal(nodeExecPhase) {
// Cannot go from a terminal state to anything else
logger.Warnf(ctx, "Invalid phase change from %v to %v for node execution %v",
nodeExecPhase.String(), request.Event.Phase.String(), request.Event.Id)
return alreadyInTerminalStatus, nil
}
// if this node execution kicked off a workflow, validate that the execution exists
var childExecutionID *core.WorkflowExecutionIdentifier
if request.Event.GetWorkflowNodeMetadata() != nil {
childExecutionID = request.Event.GetWorkflowNodeMetadata().ExecutionId
err := validation.ValidateWorkflowExecutionIdentifier(childExecutionID)
if err != nil {
logger.Errorf(ctx, "Invalid execution ID: %s with err: %v",
childExecutionID, err)
}
_, err = util.GetExecutionModel(ctx, m.db, *childExecutionID)
if err != nil {
logger.Errorf(ctx, "The node execution launched an execution but it does not exist: %s with err: %v",
childExecutionID, err)
return updateFailed, err
}
}
err := transformers.UpdateNodeExecutionModel(ctx, request, nodeExecutionModel, childExecutionID,
dynamicWorkflowRemoteClosureReference, m.config.ApplicationConfiguration().GetRemoteDataConfig().InlineEventDataPolicy,
m.storageClient)
if err != nil {
logger.Debugf(ctx, "failed to update node execution model: %+v with err: %v", request.Event.Id, err)
return updateFailed, err
}
err = m.db.NodeExecutionRepo().Update(ctx, nodeExecutionModel)
if err != nil {
logger.Debugf(ctx, "Failed to update node execution with id [%+v] with err %v",
request.Event.Id, err)
return updateFailed, err
}
return updateSucceeded, nil
}
func formatDynamicWorkflowID(identifier *core.Identifier) string {
return fmt.Sprintf("%s_%s_%s_%s", identifier.Project, identifier.Domain, identifier.Name, identifier.Version)
}
func (m *NodeExecutionManager) uploadDynamicWorkflowClosure(
ctx context.Context, nodeID *core.NodeExecutionIdentifier, workflowID *core.Identifier,
compiledWorkflowClosure *core.CompiledWorkflowClosure) (storage.DataReference, error) {
nestedSubKeys := []string{
nodeID.ExecutionId.Project,
nodeID.ExecutionId.Domain,
nodeID.ExecutionId.Name,
nodeID.NodeId,
formatDynamicWorkflowID(workflowID),
}
nestedKeys := append(m.storagePrefix, nestedSubKeys...)
remoteClosureDataRef, err := m.storageClient.ConstructReference(ctx, m.storageClient.GetBaseContainerFQN(ctx), nestedKeys...)
if err != nil {
return "", errors.NewFlyteAdminErrorf(codes.Internal,
"Failed to produce remote closure data reference for dynamic workflow yielded by node id [%+v] with workflow id [%+v]; err: %v", nodeID, workflowID, err)
}
err = m.storageClient.WriteProtobuf(ctx, remoteClosureDataRef, defaultStorageOptions, compiledWorkflowClosure)
if err != nil {
return "", errors.NewFlyteAdminErrorf(codes.Internal,
"Failed to upload dynamic workflow closure for node id [%+v] and workflow id [%+v] with err: %v", nodeID, workflowID, err)
}
return remoteClosureDataRef, nil
}
func (m *NodeExecutionManager) CreateNodeEvent(ctx context.Context, request admin.NodeExecutionEventRequest) (
*admin.NodeExecutionEventResponse, error) {
if err := validation.ValidateNodeExecutionEventRequest(&request, m.config.ApplicationConfiguration().GetRemoteDataConfig().MaxSizeInBytes); err != nil {
logger.Debugf(ctx, "CreateNodeEvent called with invalid identifier [%+v]: %v", request.Event.Id, err)
}
ctx = getNodeExecutionContext(ctx, request.Event.Id)
logger.Debugf(ctx, "Received node execution event for Node Exec Id [%+v] transitioning to phase [%v], w/ Metadata [%v]",
request.Event.Id, request.Event.Phase, request.Event.ParentTaskMetadata)
executionID := request.Event.Id.ExecutionId
workflowExecution, err := m.db.ExecutionRepo().Get(ctx, repoInterfaces.Identifier{
Project: executionID.Project,
Domain: executionID.Domain,
Name: executionID.Name,
})
if err != nil {
m.metrics.MissingWorkflowExecution.Inc()
logger.Debugf(ctx, "Failed to find existing execution with id [%+v] with err: %v", executionID, err)
if err != nil {
if ferr, ok := err.(errors.FlyteAdminError); ok {
return nil, errors.NewFlyteAdminErrorf(ferr.Code(),
"Failed to get existing execution id: [%+v] with err: %v", executionID, err)
}
}
return nil, fmt.Errorf("failed to get existing execution id: [%+v]", executionID)
}
if err := validation.ValidateCluster(ctx, workflowExecution.Cluster, request.Event.ProducerId); err != nil {
return nil, err
}
var dynamicWorkflowRemoteClosureReference string
if request.Event.GetTaskNodeMetadata() != nil && request.Event.GetTaskNodeMetadata().DynamicWorkflow != nil {
dynamicWorkflowRemoteClosureDataReference, err := m.uploadDynamicWorkflowClosure(
ctx, request.Event.Id, request.Event.GetTaskNodeMetadata().DynamicWorkflow.Id,
request.Event.GetTaskNodeMetadata().DynamicWorkflow.CompiledWorkflow)
if err != nil {
return nil, err
}
dynamicWorkflowRemoteClosureReference = dynamicWorkflowRemoteClosureDataReference.String()
}
nodeExecutionModel, err := m.db.NodeExecutionRepo().Get(ctx, repoInterfaces.NodeExecutionResource{
NodeExecutionIdentifier: *request.Event.Id,
})
if err != nil {
if err.(errors.FlyteAdminError).Code() != codes.NotFound {
logger.Debugf(ctx, "Failed to retrieve existing node execution with id [%+v] with err: %v",
request.Event.Id, err)
return nil, err
}
err = m.createNodeExecutionWithEvent(ctx, &request, dynamicWorkflowRemoteClosureReference)
if err != nil {
return nil, err
}
m.metrics.NodeExecutionsCreated.Inc()
} else {
phase := core.NodeExecution_Phase(core.NodeExecution_Phase_value[nodeExecutionModel.Phase])
updateStatus, err := m.updateNodeExecutionWithEvent(ctx, &request, &nodeExecutionModel, dynamicWorkflowRemoteClosureReference)
if err != nil {
return nil, err
}
if updateStatus == alreadyInTerminalStatus {
curPhase := request.Event.Phase.String()
errorMsg := fmt.Sprintf("Invalid phase change from %s to %s for node execution %v", phase.String(), curPhase, nodeExecutionModel.ID)
return nil, errors.NewAlreadyInTerminalStateError(ctx, errorMsg, curPhase)
}
}
m.dbEventWriter.Write(request)
if request.Event.Phase == core.NodeExecution_RUNNING {
m.metrics.ActiveNodeExecutions.Inc()
} else if common.IsNodeExecutionTerminal(request.Event.Phase) {
m.metrics.ActiveNodeExecutions.Dec()
m.metrics.NodeExecutionsTerminated.Inc(contextutils.WithPhase(ctx, request.Event.Phase.String()))
if request.Event.GetOutputData() != nil {
m.metrics.NodeExecutionOutputBytes.Observe(float64(proto.Size(request.Event.GetOutputData())))
}
}
m.metrics.NodeExecutionEventsCreated.Inc()
if err := m.eventPublisher.Publish(ctx, proto.MessageName(&request), &request); err != nil {
m.metrics.PublishEventError.Inc()
logger.Infof(ctx, "error publishing event [%+v] with err: [%v]", request.RequestId, err)
}
go func() {
if err := m.cloudEventPublisher.Publish(ctx, proto.MessageName(&request), &request); err != nil {
logger.Infof(ctx, "error publishing cloud event [%+v] with err: [%v]", request.RequestId, err)
}
}()
return &admin.NodeExecutionEventResponse{}, nil
}
// Handles making additional database calls, if necessary, to populate IsParent & IsDynamic data using the historical pattern of
// preloading child node executions. Otherwise, simply calls transform on the input model.
func (m *NodeExecutionManager) transformNodeExecutionModel(ctx context.Context, nodeExecutionModel models.NodeExecution,
nodeExecutionID *core.NodeExecutionIdentifier) (*admin.NodeExecution, error) {
internalData, err := transformers.GetNodeExecutionInternalData(nodeExecutionModel.InternalData)
if err != nil {
return nil, err
}
if internalData.EventVersion == 0 {
// Issue more expensive query to determine whether this node is a parent and/or dynamic node.
nodeExecutionModel, err = m.db.NodeExecutionRepo().GetWithChildren(ctx, repoInterfaces.NodeExecutionResource{
NodeExecutionIdentifier: *nodeExecutionID,
})
if err != nil {
return nil, err
}
}
nodeExecution, err := transformers.FromNodeExecutionModel(nodeExecutionModel)
if err != nil {
logger.Debugf(ctx, "failed to transform node execution model [%+v] to proto with err: %v", nodeExecutionID, err)
return nil, err
}
return nodeExecution, nil
}
func (m *NodeExecutionManager) transformNodeExecutionModelList(ctx context.Context, nodeExecutionModels []models.NodeExecution) ([]*admin.NodeExecution, error) {
nodeExecutions := make([]*admin.NodeExecution, len(nodeExecutionModels))
for idx, nodeExecutionModel := range nodeExecutionModels {
nodeExecution, err := m.transformNodeExecutionModel(ctx, nodeExecutionModel, &core.NodeExecutionIdentifier{
ExecutionId: &core.WorkflowExecutionIdentifier{
Project: nodeExecutionModel.Project,
Domain: nodeExecutionModel.Domain,
Name: nodeExecutionModel.Name,
},
NodeId: nodeExecutionModel.NodeID,
})
if err != nil {
return nil, err
}
nodeExecutions[idx] = nodeExecution
}
return nodeExecutions, nil
}
func (m *NodeExecutionManager) GetNodeExecution(
ctx context.Context, request admin.NodeExecutionGetRequest) (*admin.NodeExecution, error) {
if err := validation.ValidateNodeExecutionIdentifier(request.Id); err != nil {
logger.Debugf(ctx, "get node execution called with invalid identifier [%+v]: %v", request.Id, err)
}
ctx = getNodeExecutionContext(ctx, request.Id)
nodeExecutionModel, err := util.GetNodeExecutionModel(ctx, m.db, request.Id)
if err != nil {
logger.Debugf(ctx, "Failed to get node execution with id [%+v] with err %v",
request.Id, err)
return nil, err
}
nodeExecution, err := m.transformNodeExecutionModel(ctx, *nodeExecutionModel, request.Id)
if err != nil {
return nil, err
}
return nodeExecution, nil
}
func (m *NodeExecutionManager) listNodeExecutions(
ctx context.Context, identifierFilters []common.InlineFilter,
requestFilters string, limit uint32, requestToken string, sortBy *admin.Sort, mapFilters []common.MapFilter) (
*admin.NodeExecutionList, error) {
filters, err := util.AddRequestFilters(requestFilters, common.NodeExecution, identifierFilters)
if err != nil {
return nil, err
}
var sortParameter common.SortParameter
if sortBy != nil {
sortParameter, err = common.NewSortParameter(*sortBy)
if err != nil {
return nil, err
}
}
offset, err := validation.ValidateToken(requestToken)
if err != nil {
return nil, errors.NewFlyteAdminErrorf(codes.InvalidArgument,
"invalid pagination token %s for ListNodeExecutions", requestToken)
}
listInput := repoInterfaces.ListResourceInput{
Limit: int(limit),
Offset: offset,
InlineFilters: filters,
SortParameter: sortParameter,
}
listInput.MapFilters = mapFilters
output, err := m.db.NodeExecutionRepo().List(ctx, listInput)
if err != nil {
logger.Debugf(ctx, "Failed to list node executions for request with err %v", err)
return nil, err
}
var token string
if len(output.NodeExecutions) == int(limit) {
token = strconv.Itoa(offset + len(output.NodeExecutions))
}
nodeExecutionList, err := m.transformNodeExecutionModelList(ctx, output.NodeExecutions)
if err != nil {
logger.Debugf(ctx, "failed to transform node execution models for request with err: %v", err)
return nil, err
}
return &admin.NodeExecutionList{
NodeExecutions: nodeExecutionList,
Token: token,
}, nil
}
func (m *NodeExecutionManager) ListNodeExecutions(
ctx context.Context, request admin.NodeExecutionListRequest) (*admin.NodeExecutionList, error) {
// Check required fields
if err := validation.ValidateNodeExecutionListRequest(request); err != nil {
return nil, err
}
ctx = getExecutionContext(ctx, request.WorkflowExecutionId)
identifierFilters, err := util.GetWorkflowExecutionIdentifierFilters(ctx, *request.WorkflowExecutionId)
if err != nil {
return nil, err
}
var mapFilters []common.MapFilter
if request.UniqueParentId != "" {
parentNodeExecution, err := util.GetNodeExecutionModel(ctx, m.db, &core.NodeExecutionIdentifier{
ExecutionId: request.WorkflowExecutionId,
NodeId: request.UniqueParentId,
})
if err != nil {
return nil, err
}
parentIDFilter, err := common.NewSingleValueFilter(
common.NodeExecution, common.Equal, shared.ParentID, parentNodeExecution.ID)
if err != nil {
return nil, err
}
identifierFilters = append(identifierFilters, parentIDFilter)
} else {
mapFilters = []common.MapFilter{
isParent,
}
}
return m.listNodeExecutions(
ctx, identifierFilters, request.Filters, request.Limit, request.Token, request.SortBy, mapFilters)
}
// Filters on node executions matching the execution parameters (execution project, domain, and name) as well as the
// parent task execution id corresponding to the task execution identified in the request params.
func (m *NodeExecutionManager) ListNodeExecutionsForTask(
ctx context.Context, request admin.NodeExecutionForTaskListRequest) (*admin.NodeExecutionList, error) {
// Check required fields
if err := validation.ValidateNodeExecutionForTaskListRequest(request); err != nil {
return nil, err
}
ctx = getTaskExecutionContext(ctx, request.TaskExecutionId)
identifierFilters, err := util.GetWorkflowExecutionIdentifierFilters(
ctx, *request.TaskExecutionId.NodeExecutionId.ExecutionId)
if err != nil {
return nil, err
}
parentTaskExecutionModel, err := util.GetTaskExecutionModel(ctx, m.db, request.TaskExecutionId)
if err != nil {
return nil, err
}
nodeIDFilter, err := common.NewSingleValueFilter(
common.NodeExecution, common.Equal, shared.ParentTaskExecutionID, parentTaskExecutionModel.ID)
if err != nil {
return nil, err
}
identifierFilters = append(identifierFilters, nodeIDFilter)
return m.listNodeExecutions(
ctx, identifierFilters, request.Filters, request.Limit, request.Token, request.SortBy, nil)
}
func (m *NodeExecutionManager) GetNodeExecutionData(
ctx context.Context, request admin.NodeExecutionGetDataRequest) (*admin.NodeExecutionGetDataResponse, error) {
if err := validation.ValidateNodeExecutionIdentifier(request.Id); err != nil {
logger.Debugf(ctx, "can't get node execution data with invalid identifier [%+v]: %v", request.Id, err)
}
ctx = getNodeExecutionContext(ctx, request.Id)
nodeExecutionModel, err := util.GetNodeExecutionModel(ctx, m.db, request.Id)
if err != nil {
logger.Debugf(ctx, "Failed to get node execution with id [%+v] with err %v",
request.Id, err)
return nil, err
}
nodeExecution, err := transformers.FromNodeExecutionModel(*nodeExecutionModel)
if err != nil {
logger.Debugf(ctx, "failed to transform node execution model [%+v] when fetching data: %v", request.Id, err)
return nil, err
}
inputs, inputURLBlob, err := util.GetInputs(ctx, m.urlData, m.config.ApplicationConfiguration().GetRemoteDataConfig(),
m.storageClient, nodeExecution.InputUri)
if err != nil {
return nil, err
}
outputs, outputURLBlob, err := util.GetOutputs(ctx, m.urlData, m.config.ApplicationConfiguration().GetRemoteDataConfig(),
m.storageClient, nodeExecution.Closure)
if err != nil {
return nil, err
}
response := &admin.NodeExecutionGetDataResponse{
Inputs: inputURLBlob,
Outputs: outputURLBlob,
FullInputs: inputs,
FullOutputs: outputs,
}
if len(nodeExecutionModel.DynamicWorkflowRemoteClosureReference) > 0 {
closure := &core.CompiledWorkflowClosure{}
err := m.storageClient.ReadProtobuf(ctx, storage.DataReference(nodeExecutionModel.DynamicWorkflowRemoteClosureReference), closure)
if err != nil {
return nil, errors.NewFlyteAdminErrorf(codes.Internal,
"Unable to read WorkflowClosure from location %s : %v", nodeExecutionModel.DynamicWorkflowRemoteClosureReference, err)
}
if wf := closure.Primary; wf == nil {
return nil, errors.NewFlyteAdminErrorf(codes.Internal, "Empty primary workflow definition in loaded dynamic workflow model.")
} else if template := wf.Template; template == nil {
return nil, errors.NewFlyteAdminErrorf(codes.Internal, "Empty primary workflow template in loaded dynamic workflow model.")
} else {
response.DynamicWorkflow = &admin.DynamicWorkflowNodeMetadata{
Id: closure.Primary.Template.Id,
CompiledWorkflow: closure,
}
}
}
m.metrics.NodeExecutionInputBytes.Observe(float64(response.Inputs.Bytes))
if response.Outputs.Bytes > 0 {
m.metrics.NodeExecutionOutputBytes.Observe(float64(response.Outputs.Bytes))
} else if response.FullOutputs != nil {
m.metrics.NodeExecutionOutputBytes.Observe(float64(proto.Size(response.FullOutputs)))
}
return response, nil
}
func NewNodeExecutionManager(db repoInterfaces.Repository, config runtimeInterfaces.Configuration,
storagePrefix []string, storageClient *storage.DataStore, scope promutils.Scope, urlData dataInterfaces.RemoteURLInterface,
eventPublisher notificationInterfaces.Publisher, cloudEventPublisher cloudeventInterfaces.Publisher,
eventWriter eventWriter.NodeExecutionEventWriter) interfaces.NodeExecutionInterface {
metrics := nodeExecutionMetrics{
Scope: scope,
ActiveNodeExecutions: scope.MustNewGauge("active_node_executions",
"overall count of active node executions"),
NodeExecutionsCreated: scope.MustNewCounter("node_executions_created",
"overall count of node executions created"),
NodeExecutionsTerminated: labeled.NewCounter("node_executions_terminated",
"overall count of terminated node executions", scope),
NodeExecutionEventsCreated: scope.MustNewCounter("node_execution_events_created",
"overall count of successfully completed NodeExecutionEventRequest"),
MissingWorkflowExecution: scope.MustNewCounter("missing_workflow_execution",
"overall count of node execution events received that are missing a parent workflow execution"),
ClosureSizeBytes: scope.MustNewSummary("closure_size_bytes",
"size in bytes of serialized node execution closure"),
NodeExecutionInputBytes: scope.MustNewSummary("input_size_bytes",
"size in bytes of serialized node execution inputs"),
NodeExecutionOutputBytes: scope.MustNewSummary("output_size_bytes",
"size in bytes of serialized node execution outputs"),
PublishEventError: scope.MustNewCounter("publish_event_error",
"overall count of publish event errors when invoking publish()"),
}
return &NodeExecutionManager{
db: db,
config: config,
storagePrefix: storagePrefix,
storageClient: storageClient,
metrics: metrics,
urlData: urlData,
eventPublisher: eventPublisher,
dbEventWriter: eventWriter,
cloudEventPublisher: cloudEventPublisher,
}
}