diff --git a/gen/pb-go/flyteidl/plugins/array_job.pb.go b/gen/pb-go/flyteidl/plugins/array_job.pb.go index 9c24351dc..11fbcb54f 100644 --- a/gen/pb-go/flyteidl/plugins/array_job.pb.go +++ b/gen/pb-go/flyteidl/plugins/array_job.pb.go @@ -23,7 +23,7 @@ const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package // Describes a job that can process independent pieces of data concurrently. Multiple copies of the runnable component // will be executed concurrently. type ArrayJob struct { - // 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. Parallelism int64 `protobuf:"varint,1,opt,name=parallelism,proto3" json:"parallelism,omitempty"` diff --git a/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java b/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java index be40c26ae..fa8dfcc55 100644 --- a/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java +++ b/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java @@ -20,7 +20,7 @@ public interface ArrayJobOrBuilder extends /** *
-     * 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.
      * 
@@ -201,7 +201,7 @@ public int getNumber() { private long parallelism_; /** *
-     * 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.
      * 
@@ -672,7 +672,7 @@ public Builder clearSuccessCriteria() { private long parallelism_ ; /** *
-       * 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.
        * 
@@ -684,7 +684,7 @@ public long getParallelism() { } /** *
-       * 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.
        * 
@@ -699,7 +699,7 @@ public Builder setParallelism(long value) { } /** *
-       * 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.
        * 
diff --git a/gen/pb_rust/flyteidl.plugins.rs b/gen/pb_rust/flyteidl.plugins.rs index 2bc8b08c2..5c7873b5d 100644 --- a/gen/pb_rust/flyteidl.plugins.rs +++ b/gen/pb_rust/flyteidl.plugins.rs @@ -4,7 +4,7 @@ #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct 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. #[prost(int64, tag="1")] diff --git a/protos/flyteidl/plugins/array_job.proto b/protos/flyteidl/plugins/array_job.proto index 90442efd7..b46fee110 100644 --- a/protos/flyteidl/plugins/array_job.proto +++ b/protos/flyteidl/plugins/array_job.proto @@ -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;