Azure Spot VM is an Azure feature that allows you to take advantage of the unused capacity of the underlying platform. If an host has some capacity compute left, these ‘spots’ will be filled with your Spot enabled virtual machines. When enabling this feature, you receive a discount up to 90 percent of the normal pricing in some cases.

Only pricing and eviction are the differences between Spot enabled and the regular virtual machines. The compute, networking, storage, etc are exactly going to be the same. The virtual machine can be attached to a virtual network or a load balancing solution, such as an internal/external load balancer. Also, the management capabilities are exactly the same and are done though the Azure Portal or with Infrastructure as a Code (IaaC) like Bicep, ARM, Powershell or Terraform.

Protect Your Data with BDRSuite

Cost-Effective Backup Solution for VMs, Servers, Endpoints, Cloud VMs & SaaS applications. Supports On-Premise, Remote, Hybrid and Cloud Backup, including Disaster Recovery, Ransomware Defense & more!

But what is the main difference between Azure Spot and regular virtual machines? Availability! When enabling the Spot feature on your virtual machine, Microsoft will claim back the unused capacity of the hosts where your Spot enabled virtual machines are running, so customers who are paying the full pricing are allocated that space for their virtual machines. Your Azure Spot enabled virtual machines will be stopped and de-allocated.

What are the Eviction options?

There are two eviction options when enabling Azure Spot on your virtual machine.

Capacity Only: Azure will only evict your virtual machine when there is some capacity needed. In this case your Spot virtual machine will be stopped (de-allocated) so other regular virtual machines can start.

Download Banner

Price or Capacity: In this scenario, Azure evict your virtual machine when the pricing of the Spot VM exceeds the configured threshold during the creation of your virtual machine or when Azure needs compute capacity for regular virtual machines.

How to configure Spot VM?

You can enable the Spot feature when creating the virtual machine. You can do this through the Azure Portal, but you can also do this using Infrastructure as a Code (IaaC). In this blogpost, I’m using Terraform to enable Azure Spot on my virtual machine.

Azure Spot virtual machine

Spot VM configuration options

You can configure two eviction policies, Stop / De-allocate or Delete. When using stop/deallocate, the Spot enabled virtual machine will be stopped and deallocated. You can manually start the VM at any point of time, based on capacity.

When you choose Delete, your VM will be stopped and deleted.

Important note! Only the machine configuration will be deleted, the disk(s) and network interface(s) not. You will be charged for the used disk storage.

What are the restrictions of Azure Spot Virtual Machines?

There are some restrictions when it comes to Azure Spot enabled virtual machines.

Not all machine sizes are supported for Azure Spot

For example, the B-series VM size is excluded. Also the NV, NC, H series and promo VM series are excluded. You can find a complete overview of the supported machine series in the link below.

Azure Spot Virtual Machines – Pricing | Microsoft Azure

Subscription support

All free Microsoft Azure subscriptions are excluded for the Spot feature. Also subscription linked to an MPN or Partner Agreement are excluded. Supported subscriptions include Enterprise Agreements, PayG (Pay-as-you-Go) and NCE/CSP (New Commerce Experience or Cloud Solution Provider).

Storage restrictions

Azure Spot enabled virtual machines only support the regular disk storage, no ephemeral disks (local storage).

How to Convert between spot-enabled and regular Virtual Machines?

It is not possible to convert a regular virtual machine to a Spot enabled virtual machine or the other way around. You can delete the virtual machine configuration, create a new virtual machine and attach the disks and network
interface to the new machine.

Important note! Depending on your workload, there is a risk of uninterrupted availability. So in any scenario, please make the business case of using Azure Spot VM. For some mission critical workloads, you definitely don’t want to use Azure Spot VM. But in case of a Dev/Test environment, where you want to test some applications or software, it is pretty good to use Azure Spot VM. You have the benefits of low pricing on compute costs and the massive functionality of the Azure platform.

Let’s start configuring an Azure Spot VM using Terraform. In this scenario, I have deployed two virtual machines. One regular virtual machine with Azure Hybrid License Benefit enabled and one Azure Spot enabled virtual machine with Azure Hybrid License Benefit enabled. Later in this blog we will take a look from a cost perspective and the differences in pricing.

Azure Spot virtual machine

Terraform module for deploying the Azure Spot VM

I’m using exactly the same Terraform module for both virtual machine, but in the first one I removed line 72 and 73 for Azure Spot VM. After deploying both virtual machines, this is the result.

Azure Spot virtual machine

Overview of between a normal VM and Spot VM

The virtual machine types are exactly the same (Standard_D2as_v5), both with an OS disk of 127 GiB. The first VM has OS Hybrid Benefit enabled. The second VM has OS Hybrid Benefit enabled and Spot VM enabled with eviction policy Stop/Deallocate. Both servers are running Windows Server 2022 Azure Edition and have Secure Boot, vTPM and Trusted Launch enabled.

After a few days, we can take a look at Azure Cost Management, so we can see our scenario from a cost perspective. Here we can see the differences between a regular and an Azure Spot enabled virtual machine.

I’ve created two little dashboards within Cost Management. The first one (light-blue) is the compute cost of virtual machine ‘mss-hb-001’ with only Azure Hybrid Benefit enabled. The second one is the compute cost of virtual machine ‘mss-hbspot-001’ with Azure Hybrid License Benefit and Spot enabled.

Azure Spot virtual machine

Azure Cost Management overview

Azure Spot virtual machine

Azure Spot virtual machine

Differences is Azure resources between normal VM and Spot VM

As you can see, the compute costs are much lower for the Spot enabled virtual machine. In the next screenshots, you can see that the attached disks pricing is the same for both virtual machines. This is because Azure Spot is only reducing the compute costs.

Azure Spot virtual machine

Azure Spot virtual machine

Azure Disks resources are still of the same pricing

Wrap up

Azure Spot virtual machine is a great feature to be enabled in some cases. When using Infrastructure as a Code, you can easily enable this feature with a couple of lines of code in the Azure Portal. Make sure you don’t enable this feature for mission critical virtual machines or workloads, keeping in mind the availability requirements.

Follow our Twitter and Facebook feeds for new releases, updates, insightful posts and more.

Rate this post