TaskFailureInformationCodes Class
- java.
lang. Object - com.
microsoft. azure. batch. TaskFailureInformationCodes
- com.
public class TaskFailureInformationCodes
Contains error codes specific to task failure information.
Field Summary
Modifier and Type | Field and Description |
---|---|
final String |
ApplicationPackageError
An error occurred when trying to deploy a required application package. |
final String |
BlobAccessDenied
Access was denied when trying to download a resource file required for the task. |
final String |
BlobDownloadMiscError
An error occurred when trying to download a resource file required for the task. |
final String |
BlobDownloadTimedOut
A timeout occurred when downloading a resource file required for the task. |
final String |
BlobNotFound
A resource file required for the task does not exist. |
final String |
CommandLaunchFailed
An error occurred when launching the task's command line. |
final String |
CommandProgramNotFound
The program specified in the task's command line was not found. |
final String |
DiskFull
The compute node disk ran out of space when downloading the resource files required for the task. |
final String |
ResourceDirectoryCreateFailed
The compute node could not create a directory for the task's resource files. |
final String |
ResourceFileCreateFailed
The compute node could not create a local file when trying to download a resource file required for the task. |
final String |
ResourceFileWriteFailed
The compute node could not write to a local file when trying to download a resource file required for the task. |
final String |
TaskEnded
The task ended. |
final String |
Unknown
The reason for the scheduling error is unknown. |
Field Details
ApplicationPackageError
public static final String ApplicationPackageError= "ApplicationPackageError"
An error occurred when trying to deploy a required application package.
BlobAccessDenied
public static final String BlobAccessDenied= "BlobAccessDenied"
Access was denied when trying to download a resource file required for the task.
BlobDownloadMiscError
public static final String BlobDownloadMiscError= "BlobDownloadMiscError"
An error occurred when trying to download a resource file required for the task.
BlobDownloadTimedOut
public static final String BlobDownloadTimedOut= "BlobDownloadTimedOut"
A timeout occurred when downloading a resource file required for the task.
BlobNotFound
public static final String BlobNotFound= "BlobNotFound"
A resource file required for the task does not exist.
CommandLaunchFailed
public static final String CommandLaunchFailed= "CommandLaunchFailed"
An error occurred when launching the task's command line.
CommandProgramNotFound
public static final String CommandProgramNotFound= "CommandProgramNotFound"
The program specified in the task's command line was not found.
DiskFull
public static final String DiskFull= "DiskFull"
The compute node disk ran out of space when downloading the resource files required for the task.
ResourceDirectoryCreateFailed
public static final String ResourceDirectoryCreateFailed= "ResourceDirectoryCreateFailed"
The compute node could not create a directory for the task's resource files.
ResourceFileCreateFailed
public static final String ResourceFileCreateFailed= "ResourceFileCreateFailed"
The compute node could not create a local file when trying to download a resource file required for the task.
ResourceFileWriteFailed
public static final String ResourceFileWriteFailed= "ResourceFileWriteFailed"
The compute node could not write to a local file when trying to download a resource file required for the task.
TaskEnded
public static final String TaskEnded= "TaskEnded"
The task ended.
Unknown
public static final String Unknown= "Unknown"
The reason for the scheduling error is unknown.