Skip to content
Open
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
7 changes: 4 additions & 3 deletions flyteidl2/task/run.proto
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,10 @@ message RunSpec {
// Deprecated, please use CacheConfig.OverwriteCache instead
bool overwrite_cache = 5 [deprecated = true];

// the specific cluster that this action should be executed on. this value will be used as the
// default for all actions in the run unless overridden.
string cluster = 6;
// the queue name that this run should be executed on.
// Queue name is unique within an org so it can be used as an id to reference the queue.
string queue = 6;
reserved "cluster";
Comment on lines +88 to +91
Comment on lines +88 to +91

Comment thread
iaroslav-ciupin marked this conversation as resolved.
// Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
RawDataStorage raw_data_storage = 7;
Expand Down
7 changes: 4 additions & 3 deletions flyteidl2/workflow/run_definition.proto
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ message TaskAction {
// Enables caching when set and specifies the cache version to use.
google.protobuf.StringValue cache_key = 3;

// the specific cluster that this action should be executed on. if not set, the cluster from the
// `RunSpec` will be used.
string cluster = 4;
// the specific queue that this action should be executed on.
// if not set, the queue from the `RunSpec` will be used.
string queue = 4;
Comment on lines +54 to +56
reserved "cluster";
}
Comment thread
iaroslav-ciupin marked this conversation as resolved.
Comment on lines +54 to 58

// TraceAction is used to define a trace action that can be used to track the execution of an action that's managed
Expand Down
160 changes: 80 additions & 80 deletions gen/go/flyteidl2/task/run.pb.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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.

966 changes: 483 additions & 483 deletions gen/go/flyteidl2/workflow/run_definition.pb.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gen/go/flyteidl2/workflow/run_definition.pb.validate.go

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

16 changes: 8 additions & 8 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.

8 changes: 4 additions & 4 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