This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Download Microsoft Edge
More info about Internet Explorer and Microsoft Edge
Enabling automatic instance repairs for Azure Virtual Machine Scale Sets helps achieve high availability for applications by maintaining a set of healthy instances. The
Application Health extension
or
Load balancer health probes
may find that an instance is unhealthy. Automatic instance repairs will automatically perform instance repairs by deleting the unhealthy instance and creating a new one to replace it.
Requirements for using automatic instance repairs
Enable application health monitoring for scale set
The scale set should have application health monitoring for instances enabled. Health monitoring can be done using either
Application Health extension
or
Load balancer health probes
, where only one can be enabled at a time. The application health extension or the load balancer probes ping the application endpoint configured on virtual machine instances to determine the application health status. This health status is used by the scale set orchestrator to monitor instance health and perform repairs when required.
Configure endpoint to provide health status
Before enabling automatic instance repairs policy, ensure that your scale set instances have application endpoint configured to emit the application health status. To configure health status on Application Health extension, you can use either
Binary Health States
or
Rich Health States
. To configure health status using Load balancer health probes, see
probe up behavior
.
For instances marked as "Unhealthy" or "Unknown" (
Unknown
state is only available with
Application Health extension - Rich Health States
), automatic repairs are triggered by the scale set. Ensure the application endpoint is correctly configured before enabling the automatic repairs policy in order to avoid unintended instance repairs, while the endpoint is getting configured.
API version
Automatic repairs policy is supported for compute API version 2018-10-01 or higher.
Restrictions on resource or subscription moves
Resource or subscription moves are currently not supported for scale sets when automatic repairs feature is enabled.
Restriction for service fabric scale sets
This feature is currently not supported for service fabric scale sets.
Restriction for VMs with provisioning errors
Automatic repairs don't currently support scenarios where a VM instance is marked
Unhealthy
due to a provisioning failure. VMs must be successfully initialized to enable health monitoring and automatic repair capabilities.
How do automatic instance repairs work?
Automatic instance repair feature relies on health monitoring of individual instances in a scale set. VM instances in a scale set can be configured to emit application health status using either the
Application Health extension
or
Load balancer health probes
. If an instance is found to be unhealthy, then the scale set performs repair action by deleting the unhealthy instance and creating a new one to replace it. The latest Virtual Machine Scale Set model is used to create the new instance. This feature can be enabled in the Virtual Machine Scale Set model by using the
automaticRepairsPolicy
object.
Batching
The automatic instance repair operations are performed in batches. At any given time, no more than 5% of the instances in the scale set are repaired through the automatic repairs policy. This process helps avoid simultaneous deletion and re-creation of a large number of instances if found unhealthy at the same time.
Grace period
When an instance goes through a state change operation because of a PUT, PATCH, or POST action performed on the scale set, then any repair action on that instance is performed only after the grace period ends. Grace period is the amount of time to allow the instance to return to healthy state. The grace period starts after the state change has completed, which helps avoid any premature or accidental repair operations. The grace period is honored for any newly created instance in the scale set, including the one created as a result of repair operation. Grace period is specified in minutes in ISO 8601 format and can be set using the property
automaticRepairsPolicy.gracePeriod
. Grace period can range between 10 minutes and 90 minutes, and has a default value of 30 minutes.
Suspension of Repairs
Virtual Machine Scale Sets provide the capability to temporarily suspend automatic instance repairs if needed. The
serviceState
for automatic repairs under the property
orchestrationServices
in instance view of Virtual Machine Scale Set shows the current state of the automatic repairs. When a scale set is opted into automatic repairs, the value of parameter
serviceState
is set to
Running
. When the automatic repairs are suspended for a scale set, the parameter
serviceState
is set to
Suspended
. If
automaticRepairsPolicy
is defined on a scale set but the automatic repairs feature isn't enabled, then the parameter
serviceState
is set to
Not Running
.
If newly created instances for replacing the unhealthy ones in a scale set continue to remain unhealthy even after repeatedly performing repair operations, then as a safety measure the platform updates the
serviceState
for automatic repairs to
Suspended
. You can resume the automatic repairs again by setting the value of
serviceState
for automatic repairs to
Running
. Detailed instructions are provided in the section on
viewing and updating the service state of automatic repairs policy
for your scale set.
The automatic instance repairs process works as follows:
Application Health extension
or
Load balancer health probes
ping the application endpoint inside each virtual machine in the scale set to get application health status for each instance.
If the endpoint responds with a status 200 (OK), then the instance is marked as "Healthy". In all the other cases (including if the endpoint is unreachable), the instance is marked "Unhealthy".
When an instance is found to be unhealthy, the scale set triggers a repair action by deleting the unhealthy instance, and creating a new one to replace it.
Instance repairs are performed in batches. At any given time, no more than 5% of the total instances in the scale set are repaired. If a scale set has fewer than 20 instances, the repairs are done for one unhealthy instance at a time.
The above process continues until all unhealthy instance in the scale set are repaired.
Instance protection and automatic repairs
If an instance in a scale set is protected by applying one of the
protection policies
, then automatic repairs aren't performed on that instance. This behavior applies to both the protection policies:
Protect from scale-in
and
Protect from scale-set
actions.
Terminate notification and automatic repairs
If the
terminate notification
feature is enabled on a scale set, then during automatic repair operation, the deletion of an unhealthy instance follows the terminate notification configuration. A terminate notification is sent through Azure metadata service – scheduled events – and instance deletion is delayed during the configured delay timeout. However, the creation of a new instance to replace the unhealthy one doesn't wait for the delay timeout to complete.
Enabling automatic repairs policy when creating a new scale set
For enabling automatic repairs policy while creating a new scale set, ensure that all the
requirements
for opting in to this feature are met. The application endpoint should be correctly configured for scale set instances to avoid triggering unintended repairs while the endpoint is getting configured. For newly created scale sets, any instance repairs are performed only after the grace period completes. To enable the automatic instance repair in a scale set, use
automaticRepairsPolicy
object in the Virtual Machine Scale Set model.
You can also use this
quickstart template
to deploy a Virtual Machine Scale Set. The scale set has a load balancer health probe and automatic instance repairs enabled with a grace period of 30 minutes.
Azure portal
The following steps enabling automatic repairs policy when creating a new scale set.
Go to
Virtual Machine Scale Sets
.
Select
+ Add
to create a new scale set.
Go to the
Health
tab.
Locate the
Health
section.
Enable the
Monitor application health
option.
Locate the
Automatic repair policy
section.
Turn
On
the
Automatic repairs
option.
In
Grace period (min)
, specify the grace period in minutes, allowed values are between 10 and 90 minutes.
When you're done creating the new scale set, select
Review + create
button.
REST API
The following example shows how to enable automatic instance repair in a scale set model. Use API version 2018-10-01 or higher.
PUT or PATCH on '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}?api-version=2019-07-01'
"properties": {
"automaticRepairsPolicy": {
"enabled": "true",
"gracePeriod": "PT30M"
Azure PowerShell
The automatic instance repair feature can be enabled while creating a new scale set by using the New-AzVmssConfig cmdlet. This sample script walks through the creation of a scale set and associated resources using the configuration file: Create a complete Virtual Machine Scale Set. You can configure automatic instance repairs policy by adding the parameters EnableAutomaticRepair and AutomaticRepairGracePeriod to the configuration object for creating the scale set. The following example enables the feature with a grace period of 30 minutes.
New-AzVmssConfig `
-Location "EastUS" `
-SkuCapacity 2 `
-SkuName "Standard_DS2" `
-UpgradePolicyMode "Automatic" `
-EnableAutomaticRepair $true `
-AutomaticRepairGracePeriod "PT30M"
Azure CLI 2.0
The following example enables the automatic repairs policy while creating a new scale set using az vmss create. First create a resource group, then create a new scale set with automatic repairs policy grace period set to 30 minutes.
az group create --name <myResourceGroup> --location <VMSSLocation>
az vmss create \
--resource-group <myResourceGroup> \
--name <myVMScaleSet> \
--image RHEL \
--admin-username <azureuser> \
--generate-ssh-keys \
--load-balancer <existingLoadBalancer> \
--health-probe <existingHealthProbeUnderLoaderBalancer> \
--automatic-repairs-grace-period 30
The above example uses an existing load balancer and health probe for monitoring application health status of instances. If you prefer using an application health extension for monitoring, you can do the following instead: create a scale set, configure the application health extension, and enable the automatic instance repairs policy. You can enable that policy by using the az vmss update, as explained in the next section.
Enabling automatic repairs policy when updating an existing scale set
Before enabling automatic repairs policy in an existing scale set, ensure that all the requirements for opting in to this feature are met. The application endpoint should be correctly configured for scale set instances to avoid triggering unintended repairs while the endpoint is getting configured. To enable the automatic instance repair in a scale set, use automaticRepairsPolicy object in the Virtual Machine Scale Set model.
After updating the model of an existing scale set, ensure that the latest model is applied to all the instances of the scale. Refer to the instruction on how to bring VMs up-to-date with the latest scale set model.
Azure portal
You can modify the automatic repairs policy of an existing scale set through the Azure portal.
Enable the Application Health extension or Load Balancer health probes on your Virtual Machine Scale Sets before you start the next steps.
Go to an existing Virtual Machine Scale Set.
Under Settings in the menu on the left, select Health and repair.
Enable the Monitor application health option.
If you're monitoring your scale set by using the Application Health extension:
Choose Application Health extension from the Application Health monitor dropdown list.
From the Protocol dropdown list, choose the network protocol used by your application to report health. Select the appropriate protocol based on your application requirements. Protocol options are HTTP, HTTPS, or TCP.
In the Port number configuration box, type the network port used to monitor application health.
For Path, provide the application endpoint path (for example, "/") used to report application health.
The Application Health extension will ping this path inside each virtual machine in the scale set to get application health status for each instance. If you're using Binary Health States and the endpoint responds with a status 200 (OK), then the instance is marked as "Healthy". In all the other cases (including if the endpoint is unreachable), the instance is marked "Unhealthy". For more health state options, explore Rich Health States.
If you're monitoring your scale set using SLB Health probes:
Choose Load balancer probe from the Application Health monitor dropdown list.
For the Load Balancer health probe, select an existing health probe or create a new health probe for monitoring.
To enable automatic repairs:
Locate the Automatic repair policy section. Automatic repairs can be used to delete unhealthy instances from the scale set and create new ones to replace them.
Turn On the Automatic repairs option.
In Grace period (min), specify the grace period in minutes. Allowed values are between 10 and 90 minutes.
When you're done, select Save.
REST API
The following example enables the policy with grace period of 40 minutes. Use API version 2018-10-01 or higher.
PUT or PATCH on '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}?api-version=2019-07-01'
"properties": {
"automaticRepairsPolicy": {
"enabled": "true",
"gracePeriod": "PT40M"
Azure PowerShell
Use the Update-AzVmss cmdlet to modify the configuration of automatic instance repair feature in an existing scale set. The following example updates the grace period to 40 minutes.
Update-AzVmss `
-ResourceGroupName "myResourceGroup" `
-VMScaleSetName "myScaleSet" `
-EnableAutomaticRepair $true `
-AutomaticRepairGracePeriod "PT40M"
Azure CLI 2.0
The following example demonstrates how to update the automatic instance repairs policy of an existing scale set, using az vmss update.
az vmss update \
--resource-group <myResourceGroup> \
--name <myVMScaleSet> \
--enable-automatic-repairs true \
--automatic-repairs-grace-period 30
Viewing and updating the service state of automatic instance repairs policy
REST API
Use Get Instance View with API version 2019-12-01 or higher for Virtual Machine Scale Set to view the serviceState for automatic repairs under the property orchestrationServices.
GET '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/instanceView?api-version=2019-12-01'
"orchestrationServices": [
"serviceName": "AutomaticRepairs",
"serviceState": "Running"
Azure CLI
Use get-instance-view cmdlet to view the serviceState for automatic instance repairs.
az vmss get-instance-view \
--name MyScaleSet \
--resource-group MyResourceGroup
Use set-orchestration-service-state cmdlet to update the serviceState for automatic instance repairs. Once the scale set is opted into the automatic repair feature, then you can use this cmdlet to suspend or resume automatic repairs for your scale set.
az vmss set-orchestration-service-state \
--service-name AutomaticRepairs \
--action Resume \
--name MyScaleSet \
--resource-group MyResourceGroup
Azure PowerShell
Use Get-AzVmss cmdlet with parameter InstanceView to view the ServiceState for automatic instance repairs.
Get-AzVmss `
-ResourceGroupName "myResourceGroup" `
-VMScaleSetName "myScaleSet" `
-InstanceView
Use Set-AzVmssOrchestrationServiceState cmdlet to update the serviceState for automatic instance repairs. Once the scale set is opted into the automatic repair feature, you can use this cmdlet to suspend or resume automatic repairs for your scale set.
Set-AzVmssOrchestrationServiceState `
-ResourceGroupName "myResourceGroup" `
-VMScaleSetName "myScaleSet" `
-ServiceName "AutomaticRepairs" `
-Action "Suspend"
Troubleshoot
Failure to enable automatic repairs policy
If you get a 'BadRequest' error with a message stating "Couldn't find member 'automaticRepairsPolicy' on object of type 'properties'", then check the API version used for Virtual Machine Scale Set. API version 2018-10-01 or higher is required for this feature.
Instance not getting repaired even when policy is enabled
The instance could be in grace period. This period is the amount of time to wait after any state change on the instance before performing repairs, which helps avoid any premature or accidental repairs. The repair action should happen once the grace period is completed for the instance.
Viewing application health status for scale set instances
You can use the Get Instance View API for instances in a Virtual Machine Scale Set to view the application health status. With Azure PowerShell, you can use the cmdlet Get-AzVmssVM with the -InstanceView flag. The application health status is provided under the property vmHealth.
In the Azure portal, you can see the health status as well. Go to an existing scale set, select Instances from the menu on the left, and look at the Health state column for the health status of each scale set instance.
Next steps
Learn how to configure Application Health extension or Load balancer health probes for your scale sets.