Share via


BatchJobConstraints Class

  • java.lang.Object
    • com.azure.compute.batch.models.BatchJobConstraints

Implements

public final class BatchJobConstraints
implements JsonSerializable<BatchJobConstraints>

The execution constraints for a Job.

Constructor Summary

Constructor Description
BatchJobConstraints()

Creates an instance of BatchJobConstraints class.

Method Summary

Modifier and Type Method and Description
static BatchJobConstraints fromJson(JsonReader jsonReader)

Reads an instance of BatchJobConstraints from the JsonReader.

Integer getMaxTaskRetryCount()

Get the maxTaskRetryCount property: The maximum number of times each Task may be retried.

Duration getMaxWallClockTime()

Get the maxWallClockTime property: The maximum elapsed time that the Job may run, measured from the time the Job is created.

BatchJobConstraints setMaxTaskRetryCount(Integer maxTaskRetryCount)

Set the maxTaskRetryCount property: The maximum number of times each Task may be retried.

BatchJobConstraints setMaxWallClockTime(Duration maxWallClockTime)

Set the maxWallClockTime property: The maximum elapsed time that the Job may run, measured from the time the Job is created.

JsonWriter toJson(JsonWriter jsonWriter)

Methods inherited from java.lang.Object

Constructor Details

BatchJobConstraints

public BatchJobConstraints()

Creates an instance of BatchJobConstraints class.

Method Details

fromJson

public static BatchJobConstraints fromJson(JsonReader jsonReader)

Reads an instance of BatchJobConstraints from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of BatchJobConstraints if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If an error occurs while reading the BatchJobConstraints.

getMaxTaskRetryCount

public Integer getMaxTaskRetryCount()

Get the maxTaskRetryCount property: The maximum number of times each Task may be retried. The Batch service retries a Task if its exit code is nonzero. Note that this value specifically controls the number of retries. The Batch service will try each Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries a Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry Tasks. If the maximum retry count is -1, the Batch service retries Tasks without limit. The default value is 0 (no retries).

Returns:

the maxTaskRetryCount value.

getMaxWallClockTime

public Duration getMaxWallClockTime()

Get the maxWallClockTime property: The maximum elapsed time that the Job may run, measured from the time the Job is created. If the Job does not complete within the time limit, the Batch service terminates it and any Tasks that are still running. In this case, the termination reason will be MaxWallClockTimeExpiry. If this property is not specified, there is no time limit on how long the Job may run.

Returns:

the maxWallClockTime value.

setMaxTaskRetryCount

public BatchJobConstraints setMaxTaskRetryCount(Integer maxTaskRetryCount)

Set the maxTaskRetryCount property: The maximum number of times each Task may be retried. The Batch service retries a Task if its exit code is nonzero. Note that this value specifically controls the number of retries. The Batch service will try each Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries a Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry Tasks. If the maximum retry count is -1, the Batch service retries Tasks without limit. The default value is 0 (no retries).

Parameters:

maxTaskRetryCount - the maxTaskRetryCount value to set.

Returns:

the BatchJobConstraints object itself.

setMaxWallClockTime

public BatchJobConstraints setMaxWallClockTime(Duration maxWallClockTime)

Set the maxWallClockTime property: The maximum elapsed time that the Job may run, measured from the time the Job is created. If the Job does not complete within the time limit, the Batch service terminates it and any Tasks that are still running. In this case, the termination reason will be MaxWallClockTimeExpiry. If this property is not specified, there is no time limit on how long the Job may run.

Parameters:

maxWallClockTime - the maxWallClockTime value to set.

Returns:

the BatchJobConstraints object itself.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

Applies to