Skip to content

Commit d580565

Browse files
committed
first pass
1 parent c2d6166 commit d580565

File tree

5 files changed

+173
-148
lines changed

5 files changed

+173
-148
lines changed

articles/batch/TOC.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,12 @@
88
- name: Quickstarts
99
expanded: true
1010
items:
11-
- name: Run a Batch job - CLI
11+
- name: Create a Batch account and run a job - Azure CLI
1212
displayName: quickstart, first, create
1313
href: quick-create-cli.md
14-
- name: Run a Batch job - Portal
14+
- name: Create a Batch account and run a job - Azure portal
1515
displayName: quickstart, first, create
1616
href: quick-create-portal.md
17-
- name: Run a Batch job - .NET
18-
displayName: quickstart, first, create, c#, csharp
19-
href: quick-run-dotnet.md
20-
- name: Run a Batch job - Python
21-
displayName: quickstart, first, create
22-
href: quick-run-python.md
2317
- name: Create a Batch account - Bicep
2418
href: quick-create-bicep.md
2519
displayName: Resource Manager, ARM, Template
@@ -28,6 +22,12 @@
2822
displayName: Resource Manager
2923
- name: Create a Batch account - Terraform
3024
href: quick-create-terraform.md
25+
- name: Create a Batch pool and run a job - .NET
26+
displayName: quickstart, first, create, c#, csharp
27+
href: quick-run-dotnet.md
28+
- name: Create a Batch pool and run a job - Python
29+
displayName: quickstart, first, create
30+
href: quick-run-python.md
3131
- name: Tutorials
3232
items:
3333
- name: Parallel file processing - .NET

articles/batch/quick-create-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ az group delete --name qsBatch
204204

205205
## Next steps
206206

207-
In this quickstart, you created a Batch account and a Batch pool, and created and ran a Batch job. The job ran sample tasks, and you viewed output from one of the nodes. Now that you understand the key concepts of the Batch service, you're ready to use Batch with more realistic workloads at larger scale. To learn more about Azure Batch, continue to the Azure Batch tutorials.
207+
In this quickstart, you created a Batch account and pool, and created and ran a Batch job and tasks. You learned how to view task output from the nodes. Now that you understand the key concepts of the Batch service, you're ready to use Batch with more realistic, larger scale workloads. To learn more about Azure Batch, continue to the Azure Batch tutorials.
208208

209209
> [!div class="nextstepaction"]
210210
> [Azure Batch tutorials](./tutorial-parallel-dotnet.md)

articles/batch/quick-create-portal.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ ms.custom: mvc, mode-ui
88

99
# Quickstart: Use the Azure portal to create an Azure Batch account and run a job
1010

11-
Get started with Azure Batch by using the Azure portal to create a Batch account, a pool of compute nodes (virtual machines), and a job that runs tasks on the pool.
12-
13-
After completing this quickstart, you'll understand the [key concepts of the Batch service](batch-service-workflow-features.md) and be ready to try Batch with more realistic workloads at larger scale.
14-
1511
This quickstart shows you how to get started with Azure Batch by using the Azure portal. You create a Batch account that has a *pool* of virtual machines, or compute *nodes*. You then create and run a *job* with *tasks* that run on the pool nodes.
1612

1713
After you complete this quickstart, you understand the [key concepts of the Batch service](batch-service-workflow-features.md) and are ready to use Batch with more realistic, larger scale workloads.
@@ -20,7 +16,7 @@ After you complete this quickstart, you understand the [key concepts of the Batc
2016

2117
- [!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
2218

23-
## Create a Batch account
19+
## Create a Batch account and Azure Storage account
2420

2521
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.
2622

@@ -102,7 +98,7 @@ The following procedure creates and runs two identical tasks. Each task runs a c
10298

10399
1. Repeat the preceding steps to create a second task, but enter *myTask2* for **Task ID**.
104100

105-
After you create a task, Batch queues it to run on the pool. Once a node is available, the task runs on the node. In the preceding example, if the first task is still running on one node, Batch starts the second task on the other node in the pool.
101+
After you create a task, Batch queues it to run on the pool. Once a node is available, the task runs on the node. In the quickstart example, if the first task is still running on one node, Batch starts the second task on the other node in the pool.
106102

107103
## View task output
108104

@@ -128,7 +124,7 @@ When you no longer need any of the resources you created for this quickstart, yo
128124

129125
## Next steps
130126

131-
In this quickstart, you created a Batch account and a Batch pool, and created and ran a Batch job. The job ran sample tasks, and you viewed output from one of the nodes. Now that you understand the key concepts of the Batch service, you're ready to use Batch with more realistic workloads at larger scale. To learn more about Azure Batch, continue to the Azure Batch tutorials.
127+
In this quickstart, you created a Batch account and pool, and created and ran a Batch job and tasks. You learned how to monitor node and task status, and view task output from the nodes. Now that you understand the key concepts of the Batch service, you're ready to use Batch with more realistic, larger scale workloads. To learn more about Azure Batch, continue to the Azure Batch tutorials.
132128

133129
> [!div class="nextstepaction"]
134130
> [Azure Batch tutorials](./tutorial-parallel-dotnet.md)

0 commit comments

Comments
 (0)