Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Correct comment for array job max parallelism #431

Merged
merged 1 commit into from
Aug 9, 2023
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
2 changes: 1 addition & 1 deletion gen/pb-go/flyteidl/plugins/array_job.pb.go

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

10 changes: 5 additions & 5 deletions gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java

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

2 changes: 1 addition & 1 deletion gen/pb_rust/flyteidl.plugins.rs

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

2 changes: 1 addition & 1 deletion protos/flyteidl/plugins/array_job.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
// Describes a job that can process independent pieces of data concurrently. Multiple copies of the runnable component
// will be executed concurrently.
message ArrayJob {
// Defines the minimum number of instances to bring up concurrently at any given point. Note that this is an
// Defines the maximum number of instances to bring up concurrently at any given point. Note that this is an
// optimistic restriction and that, due to network partitioning or other failures, the actual number of currently
// running instances might be more. This has to be a positive number if assigned. Default value is size.
int64 parallelism = 1;
Expand Down