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
4 changes: 2 additions & 2 deletions java-batch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.25.0</version>
<version>26.26.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -201,7 +201,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html
[stability-image]: https://img.shields.io/badge/stability-preview-yellow
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-batch.svg
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-batch/0.28.0
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-batch/0.29.0
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,8 @@ public long getTaskCount() {
*
* <pre>
* Max number of tasks that can run in parallel.
* Default to min(task_count, 1000).
* Default to min(task_count, parallel tasks per job limit).
* See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
* Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
* </pre>
*
Expand Down Expand Up @@ -1543,7 +1544,8 @@ public Builder clearTaskCount() {
*
* <pre>
* Max number of tasks that can run in parallel.
* Default to min(task_count, 1000).
* Default to min(task_count, parallel tasks per job limit).
* See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
* Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
* </pre>
*
Expand All @@ -1560,7 +1562,8 @@ public long getParallelism() {
*
* <pre>
* Max number of tasks that can run in parallel.
* Default to min(task_count, 1000).
* Default to min(task_count, parallel tasks per job limit).
* See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
* Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
* </pre>
*
Expand All @@ -1581,7 +1584,8 @@ public Builder setParallelism(long value) {
*
* <pre>
* Max number of tasks that can run in parallel.
* Default to min(task_count, 1000).
* Default to min(task_count, parallel tasks per job limit).
* See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
* Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
* </pre>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ public interface TaskGroupOrBuilder
*
* <pre>
* Max number of tasks that can run in parallel.
* Default to min(task_count, 1000).
* Default to min(task_count, parallel tasks per job limit).
* See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
* Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
* </pre>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,8 @@ message TaskGroup {
int64 task_count = 4;

// Max number of tasks that can run in parallel.
// Default to min(task_count, 1000).
// Default to min(task_count, parallel tasks per job limit).
// See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
// Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
int64 parallelism = 5;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,8 @@ public long getTaskCount() {
*
* <pre>
* Max number of tasks that can run in parallel.
* Default to min(task_count, 1000).
* Default to min(task_count, parallel tasks per job limit).
* See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
* Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
* </pre>
*
Expand Down Expand Up @@ -1828,7 +1829,8 @@ public Builder clearTaskCount() {
*
* <pre>
* Max number of tasks that can run in parallel.
* Default to min(task_count, 1000).
* Default to min(task_count, parallel tasks per job limit).
* See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
* Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
* </pre>
*
Expand All @@ -1845,7 +1847,8 @@ public long getParallelism() {
*
* <pre>
* Max number of tasks that can run in parallel.
* Default to min(task_count, 1000).
* Default to min(task_count, parallel tasks per job limit).
* See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
* Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
* </pre>
*
Expand All @@ -1866,7 +1869,8 @@ public Builder setParallelism(long value) {
*
* <pre>
* Max number of tasks that can run in parallel.
* Default to min(task_count, 1000).
* Default to min(task_count, parallel tasks per job limit).
* See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
* Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
* </pre>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ public interface TaskGroupOrBuilder
*
* <pre>
* Max number of tasks that can run in parallel.
* Default to min(task_count, 1000).
* Default to min(task_count, parallel tasks per job limit).
* See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
* Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
* </pre>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,8 @@ message TaskGroup {
int64 task_count = 4;

// Max number of tasks that can run in parallel.
// Default to min(task_count, 1000).
// Default to min(task_count, parallel tasks per job limit).
// See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits).
// Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
int64 parallelism = 5;

Expand Down