availability set can be used along with scale set or scale set is enough

792 Views Asked by At

I am new to azure & learning to design application in Azure.

The question might be too naive for someone but I am really confused.

Do availability set are also required when we have scale set or scale set is enough for High availability & automatic scaling both ?

I know both Scale Set & availability set have fault domain & update domain and VMs configured in them & also I know differences among both, but question is both are architecture pattern only or real components in term of architecture?

3

There are 3 best solutions below

4
On BEST ANSWER

Scale sets include availability sets. So you dont have to créate one. VMSS behaves as a set of VMs in the same AV set.

AV set is not a component in Azure. Its just a lógical grouping.

0
On

Best answer I got is from this link: Difference between Azure Scale Set and Availability Sets

Basically, they are very similar. Scale sets also have fault domains and update domains, but the VM's will be identical, and can create new ones on the fly when the need arises. Availability sets provide HA, but there is no scaling, and the VM's are not necessarily identical, they might be configured individually and/or differently.

0
On

A scale set (VMSS) is an implicit availability set. The difference to an availability set is that a scale set has a central definition (the "model") which defines VM characteristics. This means that all the VMs are created from the same OS disk and configuration, and it is easy to change the number of VMs in the set by changing the "capacity" property. Changing the capacity results in VMs being deleted or created while maintaining high availability (an even spread across fault domains, i.e. physically separate racks in the DC).

VMSS is the only way to do autoscaling in Azure Resource Manager. In the older Cloud Services deployment model, autoscale involved starting/stopping VMs in an Availability Set. In Azure Resource Manager autoscale involves adding/removing VMs to a scale set.

You can create a scale set with a capacity of 0, or up to 1000. If you are using autoscale, you can configure a max, min and default number in the autoscale settings.

In Azure Resource Manager, you'd typically create an availability set if you have a need for your VMs to have their own specific names (rather than a name prefix and a number, which scale set VMs have), or you need VMs to be configured differently by design rather than temporarily (e.g. when rolling out a configuration change across the set).

You'd create a scale set if you want to do autoscale, or if it makes more sense for your app for the VMs to be centrally configured, or if you want to do operations against a set of VMs. E.g. starting 100 VMs is a single command if they are part of a scale set.