An administrator is configuring an Azure Virtual Machine Scale Set (VMSS) named `vmss-processing` to handle a variable batch-processing workload. The VMSS must meet the following requirements:
- Use Flexible orchestration mode to allow a mix of Spot and Standard virtual machines.
- Support Azure Autoscale to dynamically increase and decrease the number of instances based on CPU utilization.
Which two settings must be configured on `vmss-processing` to support automatic scaling? Select two.
- Set the platform fault domain count to 1.Answer
- Include a virtual machine profile in the scale set definition.Answer
- CSet the platform fault domain count to 3.
- DSet the upgrade policy to Rolling.
Answer
To support automatic scaling for a Virtual Machine Scale Set in Flexible orchestration mode, you must set the platform fault domain count to 1 and define a virtual machine profile in the scale set configuration.
To enable Azure Autoscale for a Virtual Machine Scale Set configured in Flexible orchestration mode, you must set the platform fault domain count to 1 and define a virtual machine profile. Setting the fault domain count to 1 satisfies the platform restriction for autoscale in Flexible mode, while the virtual machine profile provides the template required by the autoscale engine to deploy new instances during scale-out events.
Step-by-Step Solution
Key Concept
Enabling Azure Autoscale on a Virtual Machine Scale Set in Flexible orchestration mode requires setting the platform fault domain count to 1 and configuring a virtual machine profile to act as a template for scaled-out instances.