Skip to content

Commit

Permalink
update descriptions
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Dittamo <[email protected]>
  • Loading branch information
pvditt committed Dec 18, 2024
1 parent 563ef21 commit 2b3d402
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 10 deletions.
2 changes: 1 addition & 1 deletion flyteidl/clients/go/assets/admin.swagger.json

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

10 changes: 8 additions & 2 deletions flyteidl/gen/pb-es/flyteidl/core/workflow_pb.ts

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

10 changes: 8 additions & 2 deletions flyteidl/gen/pb-go/flyteidl/core/workflow.pb.go

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

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

10 changes: 8 additions & 2 deletions flyteidl/gen/pb_rust/flyteidl.core.rs

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

10 changes: 8 additions & 2 deletions flyteidl/protos/flyteidl/core/workflow.proto
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,16 @@ message ArrayNode {
google.protobuf.BoolValue is_original_sub_node_interface = 6;

enum DataMode {
// Indicates the ArrayNode will utilize the passed in, single input file for all sub-nodes.
// Indicates the ArrayNode's input is a list of input values that map to subNode executions.
// The file path set for the subNode will be the ArrayNode's input file, but the in-memory
// value utilized in propeller will be the individual value for each subNode execution.
// SubNode executions need to be able to read in and parse the individual value to execute correctly.
SINGLE_INPUT_FILE = 0;

// Indicates the ArrayNode will create input files for each sub-node.
// Indicates the ArrayNode's input is a list of input values that map to subNode executions.
// Propeller will create input files for each ArrayNode subNode by parsing the inputs and
// setting the InputBindings on each subNodeSpec. Both the file path and in-memory input values will
// be the individual value for each subNode execution.
INDIVIDUAL_INPUT_FILES = 1;
}

Expand Down

0 comments on commit 2b3d402

Please sign in to comment.