BatchTaskConstraints Class
- java.
lang. Object - com.
azure. compute. batch. models. BatchTaskConstraints
- com.
Implements
public final class BatchTaskConstraints
implements JsonSerializable<BatchTaskConstraints>
Execution constraints to apply to a Task.
Constructor Summary
| Constructor | Description |
|---|---|
| BatchTaskConstraints() |
Creates an instance of Batch |
Method Summary
| Modifier and Type | Method and Description |
|---|---|
|
static
Batch |
fromJson(JsonReader jsonReader)
Reads an instance of Batch |
| Integer |
getMaxTaskRetryCount()
Get the max |
| Duration |
getMaxWallClockTime()
Get the max |
| Duration |
getRetentionTime()
Get the retention |
|
Batch |
setMaxTaskRetryCount(Integer maxTaskRetryCount)
Set the max |
|
Batch |
setMaxWallClockTime(Duration maxWallClockTime)
Set the max |
|
Batch |
setRetentionTime(Duration retentionTime)
Set the retention |
|
Json |
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:
Returns:
Throws:
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:
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:
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:
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:
Returns:
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:
Returns:
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:
Returns: