Skip to content

Commit bc4ca44

Browse files
Merge pull request #267848 from Padmalathas/BatchRenderingAndPythonRevision
Batch Rendering and Python Revision
2 parents f937a10 + d1ceb10 commit bc4ca44

File tree

4 files changed

+6
-18
lines changed

4 files changed

+6
-18
lines changed

articles/batch/batch-rendering-functionality.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,6 @@ Most rendering applications will require licenses obtained from a license server
3131
* Resource files:
3232
* Application files are uploaded to Azure blob storage, and you specify file references in the [pool start task](/rest/api/batchservice/pool/add#starttask). When pool VMs are created, the resource files are downloaded onto each VM.
3333

34-
### Environment variables for pre-installed applications
35-
36-
To be able to create the command line for rendering tasks, the installation location of the rendering application executables must be specified. System environment variables have been created on the Azure Marketplace VM images, which can be used instead of having to specify actual paths. These environment variables are in addition to the [standard Batch environment variables](./batch-compute-node-environment-variables.md) created for each task.
37-
38-
|Application|Application Executable|Environment Variable|
39-
|---------|---------|---------|
40-
|Autodesk 3ds Max 2021|3dsmaxcmdio.exe|3DSMAX_2021_EXEC|
41-
|Autodesk Maya 2020|render.exe|MAYA_2020_EXEC|
42-
|Chaos Group V-Ray Standalone|vray.exe|VRAY_4.10.03_EXEC|
43-
|Arnold 2020 command line|kick.exe|ARNOLD_2020_EXEC|
44-
|Blender|blender.exe|BLENDER_2018_EXEC|
45-
4634
## Azure VM families
4735

4836
As with other workloads, rendering application system requirements vary, and performance requirements vary for jobs and projects. A large variety of VM families are available in Azure depending on your requirements – lowest cost, best price/performance, best performance, and so on.

articles/batch/quick-run-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Quickstart: Use Python to create a pool and run a job'
33
description: Follow this quickstart to run an app that uses the Azure Batch client library for Python to create and run Batch pools, nodes, jobs, and tasks.
4-
ms.date: 04/13/2023
4+
ms.date: 03/01/2024
55
ms.topic: quickstart
66
ms.devlang: python
77
ms.custom: mvc, devx-track-python, mode-api
@@ -25,7 +25,7 @@ After you complete this quickstart, you understand the [key concepts of the Batc
2525

2626
- A Batch account with a linked Azure Storage account. You can create the accounts by using any of the following methods: [Azure CLI](quick-create-cli.md) | [Azure portal](quick-create-portal.md) | [Bicep](quick-create-bicep.md) | [ARM template](quick-create-template.md) | [Terraform](quick-create-terraform.md).
2727

28-
- [Python](https://python.org/downloads) version 3.6 or later, which includes the [pip](https://pip.pypa.io/en/stable/installing) package manager.
28+
- [Python](https://python.org/downloads) version 3.8 or later, which includes the [pip](https://pip.pypa.io/en/stable/installing) package manager.
2929

3030
## Run the app
3131

articles/batch/tutorial-parallel-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Tutorial: Run a parallel workload using the Python API"
33
description: Learn how to process media files in parallel using ffmpeg in Azure Batch with the Batch Python client library.
44
ms.devlang: python
55
ms.topic: tutorial
6-
ms.date: 05/25/2023
6+
ms.date: 03/01/2024
77
ms.custom: mvc, devx-track-python, linux-related-content
88
---
99

@@ -25,7 +25,7 @@ In this tutorial, you convert MP4 media files to MP3 format, in parallel, by usi
2525

2626
## Prerequisites
2727

28-
* [Python version 3.7 or later](https://www.python.org/downloads/)
28+
* [Python version 3.8 or later](https://www.python.org/downloads/)
2929

3030
* [pip package manager](https://pip.pypa.io/en/stable/installation/)
3131

articles/batch/tutorial-run-python-batch-azure-data-factory.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 'Tutorial: Run a Batch job through Azure Data Factory'
33
description: Learn how to use Batch Explorer, Azure Storage Explorer, and a Python script to run a Batch workload through an Azure Data Factory pipeline.
44
ms.devlang: python
55
ms.topic: tutorial
6-
ms.date: 04/20/2023
6+
ms.date: 03/01/2024
77
ms.custom: mvc, devx-track-python
88
---
99

@@ -27,7 +27,7 @@ In this tutorial, you learn how to:
2727
- A Data Factory instance. To create the data factory, follow the instructions in [Create a data factory](/azure/data-factory/quickstart-create-data-factory-portal#create-a-data-factory).
2828
- [Batch Explorer](https://azure.github.io/BatchExplorer) downloaded and installed.
2929
- [Storage Explorer](https://azure.microsoft.com/products/storage/storage-explorer) downloaded and installed.
30-
- [Python 3.7 or above](https://www.python.org/downloads), with the [azure-storage-blob](https://pypi.org/project/azure-storage-blob) package installed by using `pip`.
30+
- [Python 3.8 or above](https://www.python.org/downloads), with the [azure-storage-blob](https://pypi.org/project/azure-storage-blob) package installed by using `pip`.
3131
- The [iris.csv input dataset](https://github.com/Azure-Samples/batch-adf-pipeline-tutorial/blob/master/iris.csv) downloaded from GitHub.
3232

3333
## Use Batch Explorer to create a Batch pool and nodes

0 commit comments

Comments
 (0)