Spot databricks VMs - eviction rates

Hubert-Dudek
Databricks MVP

Before using Spot machines in #databricks, it's a good idea to check their eviction rates in your region. Azure Resource Graph Explorer and that simple query will help.

 

SpotResources 
| where type =~ 'microsoft.compute/skuspotevictionrate/location' 
| where location in~ ('uksouth') 
| where sku.name in~ (
    'Standard_DS3_v2', 'Standard_D96AS_V5'
    )
| project sku.name, properties.evictionRate

 

spots.png


My blog: https://databrickster.medium.com/

jose_gonzalez
Databricks Employee
Databricks Employee

Thank you for sharing this @Hubert-Dudek