CloudTask Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An Azure Batch task. A task is a piece of work that is associated with a job and runs on a compute node.
public class CloudTask : Microsoft.Azure.Batch.IInheritedBehaviors, Microsoft.Azure.Batch.IRefreshable
type CloudTask = class
interface IRefreshable
interface IInheritedBehaviors
Public Class CloudTask
Implements IInheritedBehaviors, IRefreshable
- Inheritance
-
CloudTask
- Implements
Remarks
Batch will retry tasks when a recovery operation is triggered on a compute node. Examples of recovery operations include (but are not limited to) when an unhealthy compute node is rebooted or a compute node disappeared due to host failure. Retries due to recovery operations are independent of and are not counted against the MaxTaskRetryCount. Even if the MaxTaskRetryCount is 0, an internal retry due to a recovery operation may occur. Because of this, all tasks should be idempotent. This means tasks need to tolerate being interrupted and restarted without causing any corruption or duplicate data. The best practice for long running tasks is to use some form of checkpointing. The maximum lifetime of a task from addition to completion is 180 days. If a task has not completed within 180 days of being added it will be terminated by the Batch service and left in whatever state it was in at that time.
Constructors
CloudTask() |
Default constructor to support mocking the CloudTask class. |
CloudTask(String, String) |
Initializes a new instance of the CloudTask class. |
Properties
AffinityInformation |
Gets or sets a locality hint that can be used by the Batch service to select a node on which to start the task. |
ApplicationPackageReferences |
Gets or sets a list of application packages that the Batch service will deploy to the compute node before running the command line. |
AuthenticationTokenSettings |
Gets or sets the settings for an authentication token that the task can use to perform Batch service operations. |
CommandLine |
Gets or sets the command line of the task. |
ComputeNodeInformation |
Gets information about the compute node on which the task ran. |
Constraints |
Gets or sets the execution constraints that apply to this task. |
ContainerSettings |
Gets or sets the settings for the container under which the task runs. |
CreationTime |
Gets the creation time of the task. |
CustomBehaviors |
Gets or sets a list of behaviors that modify or customize requests to the Batch service made via this CloudTask. |
DependsOn |
Gets or sets any other tasks that this CloudTask depends on. The task will not be scheduled until all depended-on tasks have completed successfully. |
DisplayName |
Gets or sets the display name of the task. |
EnvironmentSettings |
Gets or sets a list of environment variable settings for the task. |
ETag |
Gets the ETag for the task. |
ExecutionInformation |
Gets the execution information for the task. |
ExitConditions |
Gets or sets how the Batch service should respond when the task completes. |
FilesToStage |
Gets or sets a list of files to be staged for the task. |
Id |
Gets or sets the id of the task. |
LastModified |
Gets the last modified time of the task. |
MultiInstanceSettings |
Gets or sets information about how to run the multi-instance task. |
OutputFiles |
Gets or sets a list of files that the Batch service will upload from the compute node after running the command line. |
PreviousState |
Gets the previous state of the task. |
PreviousStateTransitionTime |
Gets the time at which the task entered its previous state. |
RequiredSlots |
Gets or sets the number of scheduling slots that the Task required to run. |
ResourceFiles |
Gets or sets a list of files that the Batch service will download to the compute node before running the command line. |
State |
Gets the current state of the task. |
StateTransitionTime |
Gets the time at which the task entered its current state. |
Statistics |
Gets resource usage statistics for the task. |
Url |
Gets the URL of the task. |
UserIdentity |
Gets or sets the user identity under which the task runs. |
Methods
Extension Methods
GetOutputStoragePath(CloudTask, TaskOutputKind) |
Gets the Blob name prefix/folder where files of the given kind are stored |
OutputStorage(CloudTask, BlobServiceClient) |
Gets the TaskOutputStorage for a specified CloudTask. |
Applies to
Azure SDK for .NET