Skip to content

Commit bbf319c

Browse files
committed
okay...
1 parent 3dd56a2 commit bbf319c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

articles/batch/quick-create-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ AZ_BATCH_TASK_USER_IDENTITY=PoolNonAdmin
188188

189189
## Clean up resources
190190

191-
If you want to continue with Batch tutorials and samples, you can use the Batch and linked storage accounts you created in this quickstart. There's no charge for the Batch account itself.
191+
If you want to continue with Batch tutorials and samples, you can use the Batch account and linked storage account that you created in this quickstart. There's no charge for the Batch account itself.
192192

193193
Pools and nodes incur charges while the nodes are running, even if they aren't running jobs. When you no longer need a pool, use the [az batch pool delete](/cli/azure/batch/pool#az-batch-pool-delete) command to delete it. Deleting a pool deletes all task output on the nodes, and the nodes themselves.
194194

articles/batch/quick-create-portal.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ After you complete this quickstart, you understand the [key concepts of the Batc
1616

1717
- [!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
1818

19+
<a name="create-a-batch-account></a>
1920
## Create a Batch account and Azure Storage account
2021

2122
You need a Batch account to create pools and jobs. The following steps create an example Batch account. You also create an Azure Storage account to link to your Batch account. Although this quickstart doesn't use the storage account, most real-world Batch workloads use a linked storage account to deploy applications and store input and output data.
@@ -115,7 +116,7 @@ The standard output for this task shows the Azure Batch environment variables th
115116

116117
## Clean up resources
117118

118-
If you want to continue with Batch tutorials and samples, you can use the Batch and linked storage accounts you created in this quickstart. There's no charge for the Batch account itself.
119+
If you want to continue with Batch tutorials and samples, you can use the Batch account and linked storage account that you created in this quickstart. There's no charge for the Batch account itself.
119120

120121
Pools and nodes incur charges while the nodes are running, even if they aren't running jobs. When you no longer need a pool, delete it. On your Batch account page, select **Pools** from the left navigation. Select the pool to delete on the **Pools** page, and then select **Delete** on the pool page. Deleting a pool deletes all task output on the nodes, and the nodes themselves.
121122

articles/batch/quick-run-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ batch_service_client.job.add(job)
189189

190190
### Create tasks
191191

192-
The app creates a list of task objects by using the [TaskAddParameter](/python/api/azure-batch/azure.batch.models.taskaddparameter) class. Each task uses a `command_line` parameter to specify an app or script. Batch provides a number of ways to deploy apps and scripts to compute nodes.
192+
The app creates a list of task objects by using the [TaskAddParameter](/python/api/azure-batch/azure.batch.models.taskaddparameter) class. Each task uses a `command_line` parameter to specify an app or script. Batch provides several ways to deploy apps and scripts to compute nodes.
193193

194194
The following command line script processes the input `resource_files` objects. The script runs the Bash shell `cat` command to display the text files.
195195

0 commit comments

Comments
 (0)