A 5 minute review of the Microsoft Windows HPC platform and how to augment an existing on premise installation with Azure worker nodes to create a Hybrid HPC - Azure configuration.
to create cluster configurations. • The head node sends work the compute node clusters. • The work is split up into work units and executed in parallel. Typical on premise HPC configuration HEAD NODE ON PREMISE COMPUTE NODES
COMPUTE NODES • Add capacity with worker nodes in the cloud. • Useful for scenarios such as seasonal bursts where extra capacity is needed occasionally. • Its not necessarily about speed, its about throughput.
class machines. • Problem sets can be configured to be processed in parallel across 8 or 16 cores. • These machines come at an added cost. • Managing that resource is important to controlling $$$ spent.
written to execute Powershell to add Azure capacity as needed. • Add nodes to your HPC Cluster dynamically • Get-HpcNodeTemplate $HpcNodeTemplate -Scheduler $Scheduler | Add- HpcNodeSet -Quantity $Quantity -Size $Size -Scheduler $Scheduler • Start or Stop the nodes • Get-HpcNodeTemplate $HpcNodeTemplate -Scheduler $Scheduler | Start- HpcNodeSet -Scheduler $Scheduler • Shut down the nodes when the job is done, don’t waste $$$ with a VM that’s not doing work.
maps cleanly to the underlying REST API • Introduced late 2013 • Supports the Portable Class Library (PCL). • Ships as a NuGet Package you install from VS • Designed to use C# 5 async tasks • Easy to code with C# using Microsoft.WindowsAzure; using Microsoft.WindowsAzure.Management.Compute; using Microsoft.WindowsAzure.Management.Storage;
massive computing power and can make use of parallel processing. • Azure “Burst to cloud” is an effective means to add capacity. • Automating the starting and stopping of your Azure resources can help control costs. • Powershell and/or WAML are 2 ways to develop operational scripts to automate Hybrid-HPC work management.