-
Notifications
You must be signed in to change notification settings - Fork 681
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[flytepropeller][flyteadmin] Streaming Decks V2 #6053
base: master
Are you sure you want to change the base?
Changes from all commits
54aa165
9ed6b6e
4b4f6bd
dd774cb
0bb8e91
25fea29
4e24e91
8d1d0e4
31853bb
4068043
65b6efe
137579f
04f7fbc
aa56d64
a16851f
7314455
19498f5
74f595f
3bd3336
f6d8493
4b56e52
db4b19e
2737251
564dc5f
69ba94e
c992eae
0b91b5c
1d18265
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,7 @@ var childExecutionID = &core.WorkflowExecutionIdentifier{ | |
const dynamicWorkflowClosureRef = "s3://bucket/admin/metadata/workflow" | ||
|
||
const testInputURI = "fake://bucket/inputs.pb" | ||
const DeckURI = "fake://bucket/deck.html" | ||
|
||
var testInputs = &core.LiteralMap{ | ||
Literals: map[string]*core.Literal{ | ||
|
@@ -65,6 +66,7 @@ func TestAddRunningState(t *testing.T) { | |
Event: &event.NodeExecutionEvent{ | ||
Phase: core.NodeExecution_RUNNING, | ||
OccurredAt: startedAtProto, | ||
DeckUri: DeckURI, | ||
}, | ||
} | ||
nodeExecutionModel := models.NodeExecution{} | ||
|
@@ -73,6 +75,7 @@ func TestAddRunningState(t *testing.T) { | |
assert.Nil(t, err) | ||
assert.Equal(t, startedAt, *nodeExecutionModel.StartedAt) | ||
assert.True(t, proto.Equal(startedAtProto, closure.GetStartedAt())) | ||
assert.Equal(t, DeckURI, closure.GetDeckUri()) | ||
} | ||
|
||
func TestAddTerminalState_OutputURI(t *testing.T) { | ||
|
@@ -84,6 +87,7 @@ func TestAddTerminalState_OutputURI(t *testing.T) { | |
OutputUri: outputURI, | ||
}, | ||
OccurredAt: occurredAtProto, | ||
DeckUri: DeckURI, | ||
}, | ||
} | ||
startedAt := occurredAt.Add(-time.Minute) | ||
|
@@ -99,6 +103,7 @@ func TestAddTerminalState_OutputURI(t *testing.T) { | |
assert.Nil(t, err) | ||
assert.EqualValues(t, outputURI, closure.GetOutputUri()) | ||
assert.Equal(t, time.Minute, nodeExecutionModel.Duration) | ||
assert.Equal(t, DeckURI, closure.GetDeckUri()) | ||
} | ||
|
||
func TestAddTerminalState_OutputData(t *testing.T) { | ||
|
@@ -193,6 +198,36 @@ func TestAddTerminalState_Error(t *testing.T) { | |
assert.Equal(t, time.Minute, nodeExecutionModel.Duration) | ||
} | ||
|
||
func TestAddTerminalState_DeckURIInFailedExecution(t *testing.T) { | ||
error := &core.ExecutionError{ | ||
Code: "foo", | ||
} | ||
request := admin.NodeExecutionEventRequest{ | ||
Event: &event.NodeExecutionEvent{ | ||
Phase: core.NodeExecution_FAILED, | ||
OutputResult: &event.NodeExecutionEvent_Error{ | ||
Error: error, | ||
Comment on lines
+202
to
+209
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable name shadows built-in error type
Consider using Code suggestionCheck the AI-generated fix before applying
Code Review Run #dc455e Is this a valid issue, or was it incorrectly flagged by the Agent?
|
||
}, | ||
OccurredAt: occurredAtProto, | ||
DeckUri: DeckURI, | ||
}, | ||
} | ||
startedAt := occurredAt.Add(-time.Minute) | ||
startedAtProto, _ := ptypes.TimestampProto(startedAt) | ||
nodeExecutionModel := models.NodeExecution{ | ||
StartedAt: &startedAt, | ||
} | ||
closure := admin.NodeExecutionClosure{ | ||
StartedAt: startedAtProto, | ||
} | ||
err := addTerminalState(context.TODO(), &request, &nodeExecutionModel, &closure, | ||
interfaces.InlineEventDataPolicyStoreInline, commonMocks.GetMockStorageClient()) | ||
assert.Nil(t, err) | ||
assert.True(t, proto.Equal(error, closure.GetError())) | ||
assert.Equal(t, time.Minute, nodeExecutionModel.Duration) | ||
assert.Equal(t, DeckURI, closure.GetDeckUri()) | ||
} | ||
|
||
func TestCreateNodeExecutionModel(t *testing.T) { | ||
parentTaskExecID := uint(8) | ||
request := &admin.NodeExecutionEventRequest{ | ||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -41,6 +41,14 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const pluginContextKey = contextutils.Key("plugin") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type DeckStatus int | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DeckUnknown DeckStatus = iota | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DeckEnabled | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DeckDisabled | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type metrics struct { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pluginPanics labeled.Counter | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
unsupportedTaskType labeled.Counter | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -71,10 +79,42 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return taskType + "_" + pluginID | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (p *pluginRequestedTransition) CacheHit(outputPath storage.DataReference, deckPath *storage.DataReference, entry catalog.Entry) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (p *pluginRequestedTransition) AddDeckURI(tCtx *taskExecutionContext) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var deckURI *storage.DataReference | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
deckURIValue := tCtx.ow.GetDeckPath() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
deckURI = &deckURIValue | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if p.execInfo.OutputInfo == nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.execInfo.OutputInfo = &handler.OutputInfo{} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.execInfo.OutputInfo.DeckURI = deckURI | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (p *pluginRequestedTransition) RemoveDeckURIIfDeckNotExists(ctx context.Context, tCtx *taskExecutionContext) error { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider clearer function name
The function name Code suggestionCheck the AI-generated fix before applying
Suggested change
Code Review Run #dc455e Is this a valid issue, or was it incorrectly flagged by the Agent?
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
reader := tCtx.ow.GetReader() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if reader == nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
exists, err := reader.DeckExists(ctx) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
logger.Errorf(ctx, "Failed to check deck file existence. Error: %v", err) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.execInfo.OutputInfo.DeckURI = nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider nil check for OutputInfo
Consider initializing Code suggestionCheck the AI-generated fix before applying
Code Review Run #dc455e Is this a valid issue, or was it incorrectly flagged by the Agent?
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return regErrors.Wrapf(err, "failed to check existence of deck file") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if !exists && p.execInfo.OutputInfo != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.execInfo.OutputInfo.DeckURI = nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (p *pluginRequestedTransition) CacheHit(outputPath storage.DataReference, entry catalog.Entry) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
eapolinario marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.ttype = handler.TransitionTypeEphemeral | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.pInfo = pluginCore.PhaseInfoSuccess(nil) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.ObserveSuccess(outputPath, deckPath, &event.TaskNodeMetadata{CacheStatus: entry.GetStatus().GetCacheStatus(), CatalogKey: entry.GetStatus().GetMetadata()}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.ObserveSuccess(outputPath, &event.TaskNodeMetadata{CacheStatus: entry.GetStatus().GetCacheStatus(), CatalogKey: entry.GetStatus().GetMetadata()}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (p *pluginRequestedTransition) PopulateCacheInfo(entry catalog.Entry) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -144,10 +184,13 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (p *pluginRequestedTransition) ObserveSuccess(outputPath storage.DataReference, taskMetadata *event.TaskNodeMetadata) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if p.execInfo.OutputInfo == nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.execInfo.OutputInfo = &handler.OutputInfo{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
OutputURI: outputPath, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.execInfo.OutputInfo.OutputURI = outputPath | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+187
to
+193
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider validating OutputURI before update
Consider checking if the Code suggestionCheck the AI-generated fix before applying
Code Review Run #ecb1b4 Is this a valid issue, or was it incorrectly flagged by the Agent?
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.execInfo.TaskNodeInfo = &handler.TaskNodeInfo{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -171,7 +214,8 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
logger.Debugf(ctx, "Task still running") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return handler.DoTransition(p.ttype, handler.PhaseInfoRunning(nil)), nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Here will send the deck uri to flyteadmin | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return handler.DoTransition(p.ttype, handler.PhaseInfoRunning(&p.execInfo)), nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// The plugin interface available especially for testing. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -380,6 +424,40 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return t.taskMetricsMap[metricNameKey], nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func GetDeckStatus(ctx context.Context, tCtx *taskExecutionContext) (DeckStatus, error) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// GetDeckStatus determines whether a task generates a deck based on its execution context. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// This function evaluates the current condition of the task to determine the deck status: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// | Condition Description | Has Deck | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// |--------------------------------|----------| | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// | Enabled and Running | Yes | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// | Unknown State with Deck | Yes | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// | Unknown State without Deck | No | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// | Enabled and Succeeded | Yes | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// | Enabled but Memory Exceeded | No | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// | Disabled | No | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// The lifecycle of deck generation is as follows: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// - During task execution, the condition is checked to determine if a deck should be generated. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// - In terminal states, if the status is DeckUnknown or DeckEnabled, a HEAD request can be made to verify the existence of the deck file. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
template, err := tCtx.tr.Read(ctx) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return DeckUnknown, regErrors.Wrapf(err, "failed to read task template") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
deckValue := template.GetMetadata().GetGeneratesDeck() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add nil check for metadata access
Consider adding error handling for the case when Code suggestionCheck the AI-generated fix before applying
Suggested change
Code Review Run #9d753e Is this a valid issue, or was it incorrectly flagged by the Agent?
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if deckValue == nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return DeckUnknown, nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is this correct in older versions of flytekit? didn't tasks in the past also have this field? this means that this function will always return There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh yes, you are right, thinking solution. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. older versions of flytekit will return |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if deckValue.GetValue() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return DeckEnabled, nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return DeckDisabled, nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (t Handler) invokePlugin(ctx context.Context, p pluginCore.Plugin, tCtx *taskExecutionContext, ts handler.TaskNodeState) (*pluginRequestedTransition, error) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pluginTrns := &pluginRequestedTransition{} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -464,8 +542,30 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Regardless of the observed phase, we always add the DeckUri to support real-time deck functionality. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// The deck should be accessible even if the task is still running or has failed. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
deckStatus, err := GetDeckStatus(ctx, tCtx) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil, err | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if deckStatus == DeckEnabled { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pluginTrns.AddDeckURI(tCtx) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defer func() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (deckStatus == DeckUnknown || deckStatus == DeckEnabled) && pluginTrns.pInfo.Phase().IsTerminal() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err := pluginTrns.RemoveDeckURIIfDeckNotExists(ctx, tCtx); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
logger.Errorf(ctx, "Failed to remove deck URI if deck does not exist. Error: %v", err) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+557
to
+562
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider proper error handling for RemoveDeckURIIfDeckNotExists
Consider checking for errors from Code suggestionCheck the AI-generated fix before applying
Suggested change
Code Review Run #dc455e Is this a valid issue, or was it incorrectly flagged by the Agent?
Comment on lines
+556
to
+562
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider extracting deck cleanup logic
Consider moving the deck URI cleanup logic to a separate function for better code organization and reusability. The deferred function could be simplified by extracting the logic into a named function. Code suggestionCheck the AI-generated fix before applying
Suggested change
Code Review Run #dc455e Is this a valid issue, or was it incorrectly flagged by the Agent?
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
switch pluginTrns.pInfo.Phase() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case pluginCore.PhaseSuccess: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if deckStatus == DeckUnknown { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pluginTrns.AddDeckURI(tCtx) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// ------------------------------------- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// 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 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -501,18 +601,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pluginTrns.ObserveSuccess(tCtx.ow.GetOutputPath(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider impact of method signature change
The Code suggestionCheck the AI-generated fix before applying
Suggested change
Code Review Run #ecb1b4 Is this a valid issue, or was it incorrectly flagged by the Agent?
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
&event.TaskNodeMetadata{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CheckpointUri: tCtx.ow.GetCheckpointPrefix().String(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a test here showing that the deck uri also shows up in the case of failed executions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/flyteorg/flyte/pull/6053/files#diff-a54d30dd5d924cda2f14ca936e4173fc9a263079552e66c2c1c196001631ae96R201-R231