Skip to content

Commit 182e6d7

Browse files
committed
Minor edits
1 parent 9369f31 commit 182e6d7

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

articles/batch/tutorial-parallel-dotnet.md

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ ms.custom: "mvc, devx-track-csharp"
99

1010
# Tutorial: Run a parallel workload with Azure Batch using the .NET API
1111

12-
Use Azure Batch to run large-scale parallel and high-performance computing (HPC) batch jobs efficiently in Azure. This tutorial walks through a C# example of running a parallel workload using Batch. You learn a common Batch application workflow and how to interact programmatically with Batch and Storage resources. You learn how to:
12+
Use Azure Batch to run large-scale parallel and high-performance computing (HPC) batch jobs efficiently in Azure. This tutorial walks through a C# example of running a parallel workload using Batch. You learn a common Batch application workflow and how to interact programmatically with Batch and Storage resources.
1313

1414
> [!div class="checklist"]
15-
> * Add an application package to your Batch account
16-
> * Authenticate with Batch and Storage accounts
17-
> * Upload input files to Storage
18-
> * Create a pool of compute nodes to run an application
19-
> * Create a job and tasks to process input files
20-
> * Monitor task execution
21-
> * Retrieve output files
15+
> * Add an application package to your Batch account.
16+
> * Authenticate with Batch and Storage accounts.
17+
> * Upload input files to Storage.
18+
> * Create a pool of compute nodes to run an application.
19+
> * Create a job and tasks to process input files.
20+
> * Monitor task execution.
21+
> * Retrieve output files.
2222
23-
In this tutorial, you convert MP4 media files in parallel to MP3 format using the [ffmpeg](https://ffmpeg.org/) open-source tool.
23+
In this tutorial, you convert MP4 media files to MP3 format, in parallel, by using the [ffmpeg](https://ffmpeg.org) open-source tool.
2424

2525
[!INCLUDE [quickstarts-free-trial-note.md](../../includes/quickstarts-free-trial-note.md)]
2626

@@ -41,18 +41,20 @@ Sign in to [the Azure portal](https://portal.azure.com).
4141
Use the Azure portal to add ffmpeg to your Batch account as an [application package](batch-application-packages.md). Application packages help you manage task applications and their deployment to the compute nodes in your pool.
4242

4343
1. In the Azure portal, click **More services** > **Batch accounts**, and select the name of your Batch account.
44+
4445
1. Click **Applications** > **Add**.
46+
4547
:::image type="content" source="./media/tutorial-parallel-dotnet/add-application.png" alt-text="Screenshot of the Applications section of the batch account.":::
4648

47-
1. Enter *ffmpeg* in the **Application Id** field, and a package version of *4.3.1* in the **Version** field. Select the ffmpeg zip file that you downloaded, and then select **OK**. The ffmpeg application package is added to your Batch account.
49+
1. Enter *ffmpeg* in the **Application Id** field, and a package version of *4.3.1* in the **Version** field. Select the ffmpeg zip file that you downloaded, and then select **Submit**. The ffmpeg application package is added to your Batch account.
4850

4951
:::image type="content" source="./media/tutorial-parallel-dotnet/new-batch-application.png" alt-text="Screenshot of the ID and version fields in the Add application section.":::
5052

5153
[!INCLUDE [batch-common-credentials](../../includes/batch-common-credentials.md)]
5254

53-
## Download and run the sample
55+
## Download and run the sample app
5456

55-
### Download the sample
57+
### Download the sample app
5658

5759
[Download or clone the sample app](https://github.com/Azure-Samples/batch-dotnet-ffmpeg-tutorial) from GitHub. To clone the sample app repo with a Git client, use the following command:
5860

@@ -88,11 +90,11 @@ const string appPackageVersion = "4.3.1";
8890

8991
Build and run the application in Visual Studio, or at the command line with the `dotnet build` and `dotnet run` commands. After running the application, review the code to learn what each part of the application does. For example, in Visual Studio:
9092

91-
* Right-click the solution in Solution Explorer and select **Build Solution**.
93+
1. Right-click the solution in Solution Explorer and select **Build Solution**.
9294

93-
* Confirm the restoration of any NuGet packages, if you're prompted. If you need to download missing packages, ensure the [NuGet Package Manager](https://docs.nuget.org/consume/installing-nuget) is installed.
95+
1. Confirm the restoration of any NuGet packages, if you're prompted. If you need to download missing packages, ensure the [NuGet Package Manager](https://docs.nuget.org/consume/installing-nuget) is installed.
9496

95-
Then run it. When you run the sample application, the console output is similar to the following. During execution, you experience a pause at `Monitoring all tasks for 'Completed' state, timeout in 00:30:00...` while the pool's compute nodes are started.
97+
1. Run the solution. When you run the sample application, the console output is similar to the following. During execution, you experience a pause at `Monitoring all tasks for 'Completed' state, timeout in 00:30:00...` while the pool's compute nodes are started.
9698

9799
```
98100
Sample start: 11/19/2018 3:20:21 PM

0 commit comments

Comments
 (0)