Skip to content

Latest commit

 

History

History

samples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Azure Batch Samples

Here are a collection of samples to demonstrate the new features in this Batch preview CLI.

Hello World Samples

These samples use the new features in very simple ways to make it easier to see how these features might fit into your workflow.

Create a pool and then run a job with a single task. Both the pool and the job are defined using templates with hard coded values.

Features used:

Create a pool and then run a job with a single task. Both the pool and the job are defined using a parameterized templates. Parameter values used to fill out the templates are stored in separate files that are easy to modify as required.

Features used:

Run a specific piece of processing independently across a set of files that are uploaded into storage. The job is specified as a template accepting parameters.

Features used:

Run a specific piece of processing independently across a set of files that are uploaded into storage. The actual processing involved is split out into a separate application template. The job itself references the template while specifying parameters, pool information and other management details. Application templates are intended to be flexible and reusable across a number of jobs.

Features used:

More Complex Samples

These samples show how to use the new features with real world applications.

FFmpeg is an open-source command line tool for processing multimedia files. This is a sample demonstrating audio compression with Azure Batch on a large number of numerically-named files using a parametric sweep.

Features used:

OCR (Optical Character Recognition) is the process of extracting text from PDF images. This sample demonstrates the batch processing of PDF files.

Features used:

This sample demonstrates the batch run a MPI task with MultiInstanceSettings feature.

Blender is an open-source 3D content creation suite. This sample demonstrates distributed rendering on Azure Batch.

Features used:

A variation of the Blender sample that uses an application template to separate job definiton and management.

Features used: