TaskFailureInformationCodes Class

  • java.lang.Object
    • com.microsoft.azure.batch.TaskFailureInformationCodes

public final class TaskFailureInformationCodes

Contains error codes specific to task failure information.

Field Summary

Modifier and Type Field and Description
static final String ApplicationPackageError

An error occurred when trying to deploy a required application package.

static final String BlobAccessDenied

Access was denied when trying to download a resource file required for the task.

static final String BlobDownloadMiscError

An error occurred when trying to download a resource file required for the task.

static final String BlobDownloadTimedOut

A timeout occurred when downloading a resource file required for the task.

static final String BlobNotFound

A resource file required for the task does not exist.

static final String CommandLaunchFailed

An error occurred when launching the task's command line.

static final String CommandProgramNotFound

The program specified in the task's command line was not found.

static final String DiskFull

The compute node disk ran out of space when downloading the resource files required for the task.

static final String ResourceDirectoryCreateFailed

The compute node could not create a directory for the task's resource files.

static final String ResourceFileCreateFailed

The compute node could not create a local file when trying to download a resource file required for the task.

static final String ResourceFileWriteFailed

The compute node could not write to a local file when trying to download a resource file required for the task.

static final String TaskEnded

The task ended.

static final String Unknown

The reason for the scheduling error is unknown.

Constructor Summary

Constructor Description
TaskFailureInformationCodes()

Methods inherited from java.lang.Object

Field Details

ApplicationPackageError

public static final String ApplicationPackageError

An error occurred when trying to deploy a required application package.

BlobAccessDenied

public static final String BlobAccessDenied

Access was denied when trying to download a resource file required for the task.

BlobDownloadMiscError

public static final String BlobDownloadMiscError

An error occurred when trying to download a resource file required for the task.

BlobDownloadTimedOut

public static final String BlobDownloadTimedOut

A timeout occurred when downloading a resource file required for the task.

BlobNotFound

public static final String BlobNotFound

A resource file required for the task does not exist.

CommandLaunchFailed

public static final String CommandLaunchFailed

An error occurred when launching the task's command line.

CommandProgramNotFound

public static final String CommandProgramNotFound

The program specified in the task's command line was not found.

DiskFull

public static final String DiskFull

The compute node disk ran out of space when downloading the resource files required for the task.

ResourceDirectoryCreateFailed

public static final String ResourceDirectoryCreateFailed

The compute node could not create a directory for the task's resource files.

ResourceFileCreateFailed

public static final String 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

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

The task ended.

Unknown

public static final String Unknown

The reason for the scheduling error is unknown.

Constructor Details

TaskFailureInformationCodes

public TaskFailureInformationCodes()

Applies to