Share via


BatchTaskConstraints Class

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

Implements

public final class BatchTaskConstraints
implements JsonSerializable<BatchTaskConstraints>

Execution constraints to apply to a Task.

Constructor Summary

Constructor Description
BatchTaskConstraints()

Creates an instance of BatchTaskConstraints class.

Method Summary

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

Reads an instance of BatchTaskConstraints from the JsonReader.

Integer getMaxTaskRetryCount()

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

Duration getMaxWallClockTime()

Get the maxWallClockTime property: The maximum elapsed time that the Task may run, measured from the time the Task starts.

Duration getRetentionTime()

Get the retentionTime property: The minimum time to retain the Task directory on the Compute Node where it ran, from the time it completes execution.

BatchTaskConstraints setMaxTaskRetryCount(Integer maxTaskRetryCount)

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

BatchTaskConstraints setMaxWallClockTime(Duration maxWallClockTime)

Set the maxWallClockTime property: The maximum elapsed time that the Task may run, measured from the time the Task starts.

BatchTaskConstraints setRetentionTime(Duration retentionTime)

Set the retentionTime property: The minimum time to retain the Task directory on the Compute Node where it ran, from the time it completes execution.

JsonWriter toJson(JsonWriter jsonWriter)

Methods inherited from java.lang.Object

Constructor Details

BatchTaskConstraints

public BatchTaskConstraints()

Creates an instance of BatchTaskConstraints class.

Method Details

fromJson

public static BatchTaskConstraints fromJson(JsonReader jsonReader)

Reads an instance of BatchTaskConstraints from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of BatchTaskConstraints 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 BatchTaskConstraints.

getMaxTaskRetryCount

public Integer getMaxTaskRetryCount()

Get the maxTaskRetryCount property: The maximum number of times the 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 for the Task executable due to a nonzero exit code. The Batch service will try the Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the Task after the first attempt. If the maximum retry count is -1, the Batch service retries the Task without limit, however this is not recommended for a start task or any task. 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 Task may run, measured from the time the Task starts. If the Task does not complete within the time limit, the Batch service terminates it. If this is not specified, there is no time limit on how long the Task may run.

Returns:

the maxWallClockTime value.

getRetentionTime

public Duration getRetentionTime()

Get the retentionTime property: The minimum time to retain the Task directory on the Compute Node where it ran, from the time it completes execution. After this time, the Batch service may delete the Task directory and all its contents. The default is 7 days, i.e. the Task directory will be retained for 7 days unless the Compute Node is removed or the Job is deleted.

Returns:

the retentionTime value.

setMaxTaskRetryCount

public BatchTaskConstraints setMaxTaskRetryCount(Integer maxTaskRetryCount)

Set the maxTaskRetryCount property: The maximum number of times the 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 for the Task executable due to a nonzero exit code. The Batch service will try the Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the Task after the first attempt. If the maximum retry count is -1, the Batch service retries the Task without limit, however this is not recommended for a start task or any task. The default value is 0 (no retries).

Parameters:

maxTaskRetryCount - the maxTaskRetryCount value to set.

Returns:

the BatchTaskConstraints object itself.

setMaxWallClockTime

public BatchTaskConstraints setMaxWallClockTime(Duration maxWallClockTime)

Set the maxWallClockTime property: The maximum elapsed time that the Task may run, measured from the time the Task starts. If the Task does not complete within the time limit, the Batch service terminates it. If this is not specified, there is no time limit on how long the Task may run.

Parameters:

maxWallClockTime - the maxWallClockTime value to set.

Returns:

the BatchTaskConstraints object itself.

setRetentionTime

public BatchTaskConstraints setRetentionTime(Duration retentionTime)

Set the retentionTime property: The minimum time to retain the Task directory on the Compute Node where it ran, from the time it completes execution. After this time, the Batch service may delete the Task directory and all its contents. The default is 7 days, i.e. the Task directory will be retained for 7 days unless the Compute Node is removed or the Job is deleted.

Parameters:

retentionTime - the retentionTime value to set.

Returns:

the BatchTaskConstraints object itself.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

Applies to