Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions flyteidl2/task/run.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ syntax = "proto3";
package flyteidl2.task;

import "buf/validate/validate.proto";
import "flyteidl2/common/identifier.proto";
import "flyteidl2/common/phase.proto";
import "flyteidl2/core/literals.proto";
import "flyteidl2/core/security.proto";
Expand Down Expand Up @@ -125,6 +126,11 @@ message RunSpec {
// Distinct from raw_data_storage.raw_data_prefix, which controls offloaded
// blob (user data) layout.
string run_base_dir = 14;

// Optional pointer to the single parent run this run was derived from (re-run, recover,
// clone, or explicit SDK/CLI provenance). Set at creation, immutable thereafter, and scoped
// to the same org/project/domain as this run.
flyteidl2.common.RunIdentifier related_to = 15;

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My gut feeling is we will want to attach some "relationship" (e.g. a Rerun, a parent relationship... etc.) so I want to say make this a message with just the RunIdentifier in it at the moment...

}

message InlineRuleList {
Expand Down
315 changes: 167 additions & 148 deletions gen/go/flyteidl2/task/run.pb.go

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions gen/go/flyteidl2/task/run.pb.validate.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 24 additions & 23 deletions gen/python/flyteidl2/task/run_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions gen/python/flyteidl2/task/run_pb2.pyi

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading