Skip to content

Commit aa6f0bf

Browse files
authored
Fixed the Acrolinx score
1 parent 164614c commit aa6f0bf

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/batch/batch-task-start-event.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.date: 07/01/2025
77

88
# Task start event
99

10-
This event is emitted once a task has been scheduled to start on a compute node by the scheduler. Note that if the task is retried or requeued this event will be emitted again for the same task, but the retry count and system task version will be updated accordingly.
10+
This event is emitted once a task is scheduled to start on a compute node by the scheduler. If the task is retried or requeued, this event will be emitted again for the same task. The retry count and system task version will be updated accordingly.
1111

1212

1313
The following example shows the body of a task start event.
@@ -39,11 +39,11 @@ ms.date: 07/01/2025
3939
|------------------|----------|-----------|
4040
|`jobId`|String|The ID of the job containing the task.|
4141
|`id`|String|The ID of the task.|
42-
|`taskType`|String|The type of the task. This can either be 'JobManager' indicating it is a job manager task or 'User' indicating it is not a job manager task.|
43-
|`systemTaskVersion`|Int32|This is the internal retry counter on a task. Internally the Batch service can retry a task to account for transient issues. These issues can include internal scheduling errors or attempts to recover from compute nodes in a bad state.|
42+
|`taskType`|String|The type of the task. It's either a 'JobManager' indicating it's a job manager task or 'User' indicating it isn't a job manager task.|
43+
|`systemTaskVersion`|Int32|The internal retry counter on a task. Internally the Batch service retries a task to account for transient issues. These issues include internal scheduling errors or attempts to recover from compute nodes in a bad state.|
4444
|`requiredSlots`|Int32|The required slots to run the task.|
45-
|[`nodeInfo`](#nodeInfo)|Complex Type|Contains information about the compute node on which the task ran.|
46-
|[`multiInstanceSettings`](#multiInstanceSettings)|Complex Type|Specifies that the task is Multi-Instance Task requiring multiple compute nodes. See [multiInstanceSettings](/rest/api/batchservice/get-information-about-a-task) for details.|
45+
|[`nodeInfo`](#nodeInfo)|Complex Type| Contains information about the compute node on which the task ran.|
46+
|[`multiInstanceSettings`](#multiInstanceSettings)|Complex Type| Specifies that the task is Multi-Instance Task requiring multiple compute nodes. See [multiInstanceSettings](/rest/api/batchservice/get-information-about-a-task) for details.|
4747
|[`constraints`](#constraints)|Complex Type|The execution constraints that apply to this task.|
4848
|[`executionInfo`](#executionInfo)|Complex Type|Contains information about the execution of the task.|
4949

@@ -64,10 +64,10 @@ ms.date: 07/01/2025
6464

6565
|Element name|Type|Notes|
6666
|------------------|----------|-----------|
67-
|`maxTaskRetryCount`|Int32|The maximum number of times the task may be retried. The Batch service retries a task if its exit code is nonzero.<br /><br /> Note that this value specifically controls the number of retries. The Batch service will try the task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries a task up to 4 times (one initial try and 3 retries).<br /><br /> If the maximum retry count is 0, the Batch service does not retry tasks.<br /><br /> If the maximum retry count is -1, the Batch service retries tasks without limit.<br /><br /> The default value is 0 (no retries).|
67+
|`maxTaskRetryCount`|Int32|The maximum number of times the task is retried. The Batch service retries a task if its exit code is nonzero.<br /><br /> This value specifically controls the number of retries. The Batch service tries the task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries a task up to 4 times (one initial try and 3 retries).<br /><br /> If the maximum retry count is 0, the Batch service doesn't retry tasks.<br /><br /> If the maximum retry count is -1, the Batch service retries tasks without limit.<br /><br /> The default value is 0 (no retries).|
6868

6969
### <a name="executionInfo"></a> executionInfo
7070

7171
|Element name|Type|Notes|
7272
|------------------|----------|-----------|
73-
|`retryCount`|Int32|The number of times the task has been retried by the Batch service. The task is retried if it exits with a nonzero exit code, up to the specified MaxTaskRetryCount|
73+
|`retryCount`|Int32|The number of times the task is retried by the Batch service. The task is retried if it exits with a nonzero exit code, up to the specified MaxTaskRetryCount|

0 commit comments

Comments
 (0)