JobStatistics Class
- java.
lang. Object - com.
microsoft. azure. batch. protocol. models. JobStatistics
- com.
public class JobStatistics
Resource usage statistics for a Job.
Constructor Summary
Constructor | Description | |
---|---|---|
JobStatistics() |
Method Summary
Modifier and Type | Method and Description |
---|---|
org.joda.time.Period |
kernelCPUTime()
Get the kernel |
org.joda.time.DateTime |
lastUpdateTime()
Get the last |
long |
numFailedTasks()
Get a Task fails if it exhausts its maximum retry count without returning exit code 0. |
long |
numSucceededTasks()
Get a Task completes successfully if it returns exit code 0. |
long |
numTaskRetries()
Get the num |
double |
readIOGiB()
Get the read |
long |
readIOps()
Get the read |
org.joda.time.DateTime |
startTime()
Get the start |
String |
url()
Get the url value. |
org.joda.time.Period |
userCPUTime()
Get the user |
org.joda.time.Period |
waitTime()
Get the wait time for a Task is defined as the elapsed time between the creation of the Task and the start of Task execution. |
org.joda.time.Period |
wallClockTime()
Get the wall clock time is the elapsed time from when the Task started running on a Compute Node to when it finished (or to the last time the statistics were updated, if the Task had not finished by then). |
Job |
withKernelCPUTime(Period kernelCPUTime)
Set the kernel |
Job |
withLastUpdateTime(DateTime lastUpdateTime)
Set the last |
Job |
withNumFailedTasks(long numFailedTasks)
Set a Task fails if it exhausts its maximum retry count without returning exit code 0. |
Job |
withNumSucceededTasks(long numSucceededTasks)
Set a Task completes successfully if it returns exit code 0. |
Job |
withNumTaskRetries(long numTaskRetries)
Set the num |
Job |
withReadIOGiB(double readIOGiB)
Set the read |
Job |
withReadIOps(long readIOps)
Set the read |
Job |
withStartTime(DateTime startTime)
Set the start |
Job |
withUrl(String url)
Set the url value. |
Job |
withUserCPUTime(Period userCPUTime)
Set the user |
Job |
withWaitTime(Period waitTime)
Set the wait time for a Task is defined as the elapsed time between the creation of the Task and the start of Task execution. |
Job |
withWallClockTime(Period wallClockTime)
Set the wall clock time is the elapsed time from when the Task started running on a Compute Node to when it finished (or to the last time the statistics were updated, if the Task had not finished by then). |
Job |
withWriteIOGiB(double writeIOGiB)
Set the write |
Job |
withWriteIOps(long writeIOps)
Set the write |
double |
writeIOGiB()
Get the write |
long |
writeIOps()
Get the write |
Methods inherited from java.lang.Object
Constructor Details
JobStatistics
public JobStatistics()
Method Details
kernelCPUTime
public Period kernelCPUTime()
Get the kernelCPUTime value.
Returns:
lastUpdateTime
public DateTime lastUpdateTime()
Get the lastUpdateTime value.
Returns:
numFailedTasks
public long numFailedTasks()
Get a Task fails if it exhausts its maximum retry count without returning exit code 0.
Returns:
numSucceededTasks
public long numSucceededTasks()
Get a Task completes successfully if it returns exit code 0.
Returns:
numTaskRetries
public long numTaskRetries()
Get the numTaskRetries value.
Returns:
readIOGiB
public double readIOGiB()
Get the readIOGiB value.
Returns:
readIOps
public long readIOps()
Get the readIOps value.
Returns:
startTime
public DateTime startTime()
Get the startTime value.
Returns:
url
public String url()
Get the url value.
Returns:
userCPUTime
public Period userCPUTime()
Get the userCPUTime value.
Returns:
waitTime
public Period waitTime()
Get the wait time for a Task is defined as the elapsed time between the creation of the Task and the start of Task execution. (If the Task is retried due to failures, the wait time is the time to the most recent Task execution.) This value is only reported in the Account lifetime statistics; it is not included in the Job statistics.
Returns:
wallClockTime
public Period wallClockTime()
Get the wall clock time is the elapsed time from when the Task started running on a Compute Node to when it finished (or to the last time the statistics were updated, if the Task had not finished by then). If a Task was retried, this includes the wall clock time of all the Task retries.
Returns:
withKernelCPUTime
public JobStatistics withKernelCPUTime(Period kernelCPUTime)
Set the kernelCPUTime value.
Parameters:
Returns:
withLastUpdateTime
public JobStatistics withLastUpdateTime(DateTime lastUpdateTime)
Set the lastUpdateTime value.
Parameters:
Returns:
withNumFailedTasks
public JobStatistics withNumFailedTasks(long numFailedTasks)
Set a Task fails if it exhausts its maximum retry count without returning exit code 0.
Parameters:
Returns:
withNumSucceededTasks
public JobStatistics withNumSucceededTasks(long numSucceededTasks)
Set a Task completes successfully if it returns exit code 0.
Parameters:
Returns:
withNumTaskRetries
public JobStatistics withNumTaskRetries(long numTaskRetries)
Set the numTaskRetries value.
Parameters:
Returns:
withReadIOGiB
public JobStatistics withReadIOGiB(double readIOGiB)
Set the readIOGiB value.
Parameters:
Returns:
withReadIOps
public JobStatistics withReadIOps(long readIOps)
Set the readIOps value.
Parameters:
Returns:
withStartTime
public JobStatistics withStartTime(DateTime startTime)
Set the startTime value.
Parameters:
Returns:
withUrl
public JobStatistics withUrl(String url)
Set the url value.
Parameters:
Returns:
withUserCPUTime
public JobStatistics withUserCPUTime(Period userCPUTime)
Set the userCPUTime value.
Parameters:
Returns:
withWaitTime
public JobStatistics withWaitTime(Period waitTime)
Set the wait time for a Task is defined as the elapsed time between the creation of the Task and the start of Task execution. (If the Task is retried due to failures, the wait time is the time to the most recent Task execution.) This value is only reported in the Account lifetime statistics; it is not included in the Job statistics.
Parameters:
Returns:
withWallClockTime
public JobStatistics withWallClockTime(Period wallClockTime)
Set the wall clock time is the elapsed time from when the Task started running on a Compute Node to when it finished (or to the last time the statistics were updated, if the Task had not finished by then). If a Task was retried, this includes the wall clock time of all the Task retries.
Parameters:
Returns:
withWriteIOGiB
public JobStatistics withWriteIOGiB(double writeIOGiB)
Set the writeIOGiB value.
Parameters:
Returns:
withWriteIOps
public JobStatistics withWriteIOps(long writeIOps)
Set the writeIOps value.
Parameters:
Returns:
writeIOGiB
public double writeIOGiB()
Get the writeIOGiB value.
Returns:
writeIOps
public long writeIOps()
Get the writeIOps value.
Returns:
Applies to
Azure SDK for Java