Skip to content

Commit 5fab754

Browse files
authored
Merge pull request #46758 from dlepow/retire
Batch: retire old .NET and Python tutorials
2 parents 78a952a + 347c104 commit 5fab754

32 files changed

+17
-1523
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "articles/batch/batch-dotnet-get-started.md",
5+
"redirect_url": "/azure/batch/quick-run-dotnet",
6+
"redirect_document_id": true
7+
},
8+
{
9+
"source_path": "articles/batch/batch-python-tutorial.md",
10+
"redirect_url": "/azure/batch/quick-run-python",
11+
"redirect_document_id": true
12+
},
313
{
414
"source_path": "articles/cognitive-services/Speech-Service/how-to-customize-speech-models.md",
515
"redirect_url": "/azure/cognitive-services/Speech-Service/how-to-customize-acoustic-models",

articles/batch/TOC.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -121,18 +121,14 @@
121121
href: batch-get-resource-counts.md
122122
- name: Query resources efficiently
123123
href: batch-efficient-list-queries.md
124-
- name: Use developer tools
124+
- name: Use scripting tools
125125
items:
126-
- name: Use Batch .NET
127-
href: batch-dotnet-get-started.md
128-
- name: Use Batch Python
129-
href: batch-python-tutorial.md
130-
- name: Use Batch Node.js
131-
href: batch-nodejs-get-started.md
132126
- name: Use PowerShell cmdlets
133127
href: batch-powershell-cmdlets-get-started.md
134128
- name: Use Azure CLI
135129
href: batch-cli-get-started.md
130+
- name: Use Batch Node.js SDK
131+
href: batch-nodejs-get-started.md
136132
- name: Reference
137133
items:
138134
- name: Azure CLI

articles/batch/batch-account-create-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ In addition to using the Azure portal, you can create and manage Batch accounts
118118

119119
## Next steps
120120
* See the [Batch feature overview](batch-api-basics.md) to learn more about Batch service concepts and features. The article discusses the primary Batch resources such as pools, compute nodes, jobs, and tasks, and provides an overview of the service's features for large-scale compute workloads.
121-
* Learn the basics of developing a Batch-enabled application using the [Batch .NET client library](batch-dotnet-get-started.md) or [Python](batch-python-tutorial.md). These introductory articles guide you through a working application that uses the Batch service to execute a workload on multiple compute nodes, and includes using Azure Storage for workload file staging and retrieval.
121+
* Learn the basics of developing a Batch-enabled application using the [Batch .NET client library](quick-run-dotnet.md) or [Python](quick-run-python.md). These quickstarts guide you through a sample application that uses the Batch service to execute a workload on multiple compute nodes, and includes using Azure Storage for workload file staging and retrieval.
122122

123123
[azure_portal]: https://portal.azure.com
124124
[batch_pricing]: https://azure.microsoft.com/pricing/details/batch/

articles/batch/batch-api-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ In situations where some of your tasks are failing, your Batch client applicatio
500500
501501
## Next steps
502502
* Learn about the [Batch APIs and tools](batch-apis-tools.md) available for building Batch solutions.
503-
* Walk through a sample Batch application step-by-step in [Get started with the Azure Batch Library for .NET](batch-dotnet-get-started.md). There is also a [Python version](batch-python-tutorial.md) of the tutorial that runs a workload on Linux compute nodes.
503+
* Learn the basics of developing a Batch-enabled application using the [Batch .NET client library](quick-run-dotnet.md) or [Python](quick-run-python.md). These quickstarts guide you through a sample application that uses the Batch service to execute a workload on multiple compute nodes, and includes using Azure Storage for workload file staging and retrieval.
504504
* Download and install [BatchLabs][batch_labs] for use while you develop your Batch solutions. Use BatchLabs to help create, debug, and monitor Azure Batch applications.
505505
* See community resources including [Stack Overflow](http://stackoverflow.com/questions/tagged/azure-batch), the [Batch Community repo](https://github.com/Azure/Batch), and the [Azure Batch forum][batch_forum] on MSDN.
506506

articles/batch/batch-dotnet-get-started.md

Lines changed: 0 additions & 788 deletions
This file was deleted.

articles/batch/batch-linux-nodes.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,10 +320,7 @@ Azure Batch is built on Azure Cloud Services and Azure Virtual Machines technolo
320320
If you deploy applications to your Batch nodes using [application packages](batch-application-packages.md), you are also charged for the Azure Storage resources that your application packages consume. In general, the Azure Storage costs are minimal.
321321

322322
## Next steps
323-
### Batch Python tutorial
324-
For a more in-depth tutorial about how to work with Batch by using Python, check out [Get started with the Azure Batch Python client](batch-python-tutorial.md). Its companion [code sample][github_samples_pyclient] includes a helper function, `get_vm_config_for_distro`, that shows another technique to obtain a virtual machine configuration.
325323

326-
### Batch Python code samples
327324
The [Python code samples][github_samples_py] in the [azure-batch-samples][github_samples] repository on GitHub contain scripts that show you how to perform common Batch operations, such as pool, job, and task creation. The [README][github_py_readme] that accompanies the Python samples has details about how to install the required packages.
328325

329326
[api_net]: http://msdn.microsoft.com/library/azure/mt348682.aspx

articles/batch/batch-nodejs-get-started.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@ ms.author: shwetams
1616

1717
# Get started with Batch SDK for Node.js
1818

19-
> [!div class="op_single_selector"]
20-
> * [.NET](batch-dotnet-get-started.md)
21-
> * [Python](batch-python-tutorial.md)
22-
> * [Node.js](batch-nodejs-get-started.md)
23-
>
24-
>
25-
2619
Learn the basics of building a Batch client in Node.js using [Azure Batch Node.js SDK](/javascript/api/overview/azure/batch). We take a step by step approach of understanding a scenario for a batch application and then setting it up using a Node.js client.
2720

2821
## Prerequisites

0 commit comments

Comments
 (0)