Share via


ComputeBatchModelFactory.BatchJobReleaseTask Method

Definition

A Job Release Task to run on Job completion on any Compute Node where the Job has run. The Job Release Task runs when the Job ends, because of one of the following: The user calls the Terminate Job API, or the Delete Job API while the Job is still active, the Job's maximum wall clock time constraint is reached, and the Job is still active, or the Job's Job Manager Task completed, and the Job is configured to terminate when the Job Manager completes. The Job Release Task runs on each Node where Tasks of the Job have run and the Job Preparation Task ran and completed. If you reimage a Node after it has run the Job Preparation Task, and the Job ends without any further Tasks of the Job running on that Node (and hence the Job Preparation Task does not re-run), then the Job Release Task does not run on that Compute Node. If a Node reboots while the Job Release Task is still running, the Job Release Task runs again when the Compute Node starts up. The Job is not marked as complete until all Job Release Tasks have completed. The Job Release Task runs in the background. It does not occupy a scheduling slot; that is, it does not count towards the taskSlotsPerNode limit specified on the Pool.

public static Azure.Compute.Batch.BatchJobReleaseTask BatchJobReleaseTask(string id = default, string commandLine = default, Azure.Compute.Batch.BatchTaskContainerSettings containerSettings = default, System.Collections.Generic.IEnumerable<Azure.Compute.Batch.ResourceFile> resourceFiles = default, System.Collections.Generic.IEnumerable<Azure.Compute.Batch.EnvironmentSetting> environmentSettings = default, TimeSpan? maxWallClockTime = default, TimeSpan? retentionTime = default, Azure.Compute.Batch.UserIdentity userIdentity = default);
static member BatchJobReleaseTask : string * string * Azure.Compute.Batch.BatchTaskContainerSettings * seq<Azure.Compute.Batch.ResourceFile> * seq<Azure.Compute.Batch.EnvironmentSetting> * Nullable<TimeSpan> * Nullable<TimeSpan> * Azure.Compute.Batch.UserIdentity -> Azure.Compute.Batch.BatchJobReleaseTask
Public Shared Function BatchJobReleaseTask (Optional id As String = Nothing, Optional commandLine As String = Nothing, Optional containerSettings As BatchTaskContainerSettings = Nothing, Optional resourceFiles As IEnumerable(Of ResourceFile) = Nothing, Optional environmentSettings As IEnumerable(Of EnvironmentSetting) = Nothing, Optional maxWallClockTime As Nullable(Of TimeSpan) = Nothing, Optional retentionTime As Nullable(Of TimeSpan) = Nothing, Optional userIdentity As UserIdentity = Nothing) As BatchJobReleaseTask

Parameters

id
String

A string that uniquely identifies the Job Release Task within the Job. The ID can contain any combination of alphanumeric characters including hyphens and underscores and cannot contain more than 64 characters. If you do not specify this property, the Batch service assigns a default value of 'jobrelease'. No other Task in the Job can have the same ID as the Job Release Task. If you try to submit a Task with the same id, the Batch service rejects the request with error code TaskIdSameAsJobReleaseTask; if you are calling the REST API directly, the HTTP status code is 409 (Conflict).

commandLine
String

The command line of the Job Release Task. The command line does not run under a shell, and therefore cannot take advantage of shell features such as environment variable expansion. If you want to take advantage of such features, you should invoke the shell in the command line, for example using "cmd /c MyCommand" in Windows or "/bin/sh -c MyCommand" in Linux. If the command line refers to file paths, it should use a relative path (relative to the Task working directory), or use the Batch provided environment variable (https://learn.microsoft.com/azure/batch/batch-compute-node-environment-variables).

containerSettings
BatchTaskContainerSettings

The settings for the container under which the Job Release Task runs. When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all Task environment variables are mapped into the container, and the Task command line is executed in the container. Files produced in the container outside of AZ_BATCH_NODE_ROOT_DIR might not be reflected to the host disk, meaning that Batch file APIs will not be able to access those files.

resourceFiles
IEnumerable<ResourceFile>

A list of files that the Batch service will download to the Compute Node before running the command line. There is a maximum size for the list of resource files. When the max size is exceeded, the request will fail and the response error code will be RequestEntityTooLarge. If this occurs, the collection of ResourceFiles must be reduced in size. This can be achieved using .zip files, Application Packages, or Docker Containers. Files listed under this element are located in the Task's working directory.

environmentSettings
IEnumerable<EnvironmentSetting>

A list of environment variable settings for the Job Release Task.

maxWallClockTime
Nullable<TimeSpan>

The maximum elapsed time that the Job Release Task may run on a given Compute Node, measured from the time the Task starts. If the Task does not complete within the time limit, the Batch service terminates it. The default value is 15 minutes. You may not specify a timeout longer than 15 minutes. If you do, the Batch service rejects it with an error; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request).

retentionTime
Nullable<TimeSpan>

The minimum time to retain the Task directory for the Job Release Task on the Compute Node. After this time, the Batch service may delete the Task directory and all its contents. The default is 7 days, i.e. the Task directory will be retained for 7 days unless the Compute Node is removed or the Job is deleted.

userIdentity
UserIdentity

The user identity under which the Job Release Task runs. If omitted, the Task runs as a non-administrative user unique to the Task.

Returns

A new BatchJobReleaseTask instance for mocking.

Applies to