Package com.azure.compute.batch.models
Class BatchTaskExecutionInfo
java.lang.Object
com.azure.compute.batch.models.BatchTaskExecutionInfo
- All Implemented Interfaces:
com.azure.json.JsonSerializable<BatchTaskExecutionInfo>
public final class BatchTaskExecutionInfo
extends Object
implements com.azure.json.JsonSerializable<BatchTaskExecutionInfo>
Information about the execution of a Task.
-
Method Summary
Modifier and TypeMethodDescriptionstatic BatchTaskExecutionInfo
fromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of BatchTaskExecutionInfo from the JsonReader.Get the containerInfo property: Information about the container under which the Task is executing.Get the endTime property: The time at which the Task completed.Get the exitCode property: The exit code of the program specified on the Task command line.Get the failureInfo property: Information describing the Task failure, if any.Get the lastRequeueTime property: The most recent time at which the Task has been requeued by the Batch service as the result of a user request.Get the lastRetryTime property: The most recent time at which a retry of the Task started running.int
Get the requeueCount property: The number of times the Task has been requeued by the Batch service as the result of a user request.Get the result property: The result of the Task execution.int
Get the retryCount property: The number of times the Task has been retried by the Batch service.Get the startTime property: The time at which the Task started running.com.azure.json.JsonWriter
toJson
(com.azure.json.JsonWriter jsonWriter) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.azure.json.JsonSerializable
toJson, toJson, toJsonBytes, toJsonString
-
Method Details
-
getStartTime
Get the startTime property: The time at which the Task started running. 'Running' corresponds to the running state, so if the Task specifies resource files or Packages, then the start time reflects the time at which the Task started downloading or deploying these. If the Task has been restarted or retried, this is the most recent time at which the Task started running. This property is present only for Tasks that are in the running or completed state.- Returns:
- the startTime value.
-
getEndTime
Get the endTime property: The time at which the Task completed. This property is set only if the Task is in the Completed state.- Returns:
- the endTime value.
-
getExitCode
Get the exitCode property: The exit code of the program specified on the Task command line. This property is set only if the Task is in the completed state. In general, the exit code for a process reflects the specific convention implemented by the application developer for that process. If you use the exit code value to make decisions in your code, be sure that you know the exit code convention used by the application process. However, if the Batch service terminates the Task (due to timeout, or user termination via the API) you may see an operating system-defined exit code.- Returns:
- the exitCode value.
-
getContainerInfo
Get the containerInfo property: Information about the container under which the Task is executing. This property is set only if the Task runs in a container context.- Returns:
- the containerInfo value.
-
getFailureInfo
Get the failureInfo property: Information describing the Task failure, if any. This property is set only if the Task is in the completed state and encountered a failure.- Returns:
- the failureInfo value.
-
getRetryCount
public int getRetryCount()Get the retryCount property: The number of times the Task has been retried by the Batch service. Task application failures (non-zero exit code) are retried, pre-processing errors (the Task could not be run) and file upload errors are not retried. The Batch service will retry the Task up to the limit specified by the constraints.- Returns:
- the retryCount value.
-
getLastRetryTime
Get the lastRetryTime property: The most recent time at which a retry of the Task started running. This element is present only if the Task was retried (i.e. retryCount is nonzero). If present, this is typically the same as startTime, but may be different if the Task has been restarted for reasons other than retry; for example, if the Compute Node was rebooted during a retry, then the startTime is updated but the lastRetryTime is not.- Returns:
- the lastRetryTime value.
-
getRequeueCount
public int getRequeueCount()Get the requeueCount property: The number of times the Task has been requeued by the Batch service as the result of a user request. When the user removes Compute Nodes from a Pool (by resizing/shrinking the pool) or when the Job is being disabled, the user can specify that running Tasks on the Compute Nodes be requeued for execution. This count tracks how many times the Task has been requeued for these reasons.- Returns:
- the requeueCount value.
-
getLastRequeueTime
Get the lastRequeueTime property: The most recent time at which the Task has been requeued by the Batch service as the result of a user request. This property is set only if the requeueCount is nonzero.- Returns:
- the lastRequeueTime value.
-
getResult
Get the result property: The result of the Task execution. If the value is 'failed', then the details of the failure can be found in the failureInfo property.- Returns:
- the result value.
-
toJson
- Specified by:
toJson
in interfacecom.azure.json.JsonSerializable<BatchTaskExecutionInfo>
- Throws:
IOException
-
fromJson
public static BatchTaskExecutionInfo fromJson(com.azure.json.JsonReader jsonReader) throws IOException Reads an instance of BatchTaskExecutionInfo from the JsonReader.- Parameters:
jsonReader
- The JsonReader being read.- Returns:
- An instance of BatchTaskExecutionInfo if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.
- Throws:
IllegalStateException
- If the deserialized JSON object was missing any required properties.IOException
- If an error occurs while reading the BatchTaskExecutionInfo.
-