The difference in sets of accessories for azure and sets of scales

Can someone tell the difference between the two in the ARM portal. Will there also be PowerShell if I need to add a new Azure RM VM to an existing AS (availability set)? thanks prab

+5
source share
5 answers

An accessibility set consists of a set of discrete virtual machines that have their own names and individual properties, but propagate across error domains, which means that when you have multiple sets of virtual machines in a set, it reduces the likelihood of losing all your virtual machines in the event of a failure equipment in the host or rack.

A set of scales consists of a set of identically configured virtual machines that are also distributed across error domains (in fact, a set of scales is an implicit availability set with 5 error domains). The main difference is that the sets of scales are identical, so it’s very easy to add or remove virtual machines from the set while maintaining high availability, which, in turn, simplifies the implementation of autoscaling and performs operations on the entire set or subset of virtual machines. There are also API calls that support re-mapping and updating of virtual machines, which allows you to deploy the update while maintaining the service. They are useful for cloud architectures that require the deployment of a large number of similar virtual machines or must be flexible. A typical architecture may use a set of scales for agents or work nodes and an accessibility set for primary or control nodes. See https://azure.microsoft.com/en-us/services/virtual-machine-scale-sets/ for more details.

For the question of adding a new virtual machine to an existing AS, see Azure Resource Manager: move the virtual machine to the availability group and also https://gallery.technet.microsoft.com/Set-Azure-Resource-Manager-f7509ec4

+8
source

Availability is the forerunner of dialing. It will eventually be replaced, although they are now being created together. What other sets of scales introduce autoscaling.

+1
source

A set of scales is an implicit availability set with five error domains and five update domains. Scale sets of over 100 virtual machines span multiple placement groups that are equivalent to multiple availability sets.

For more information about hosting groups, see Working with Large Sets of Virtual Machines . The set of available virtual machines can exist on the same virtual network as the set of virtual machine scales. The general configuration is to put the host control virtual machines (which often require a unique configuration) into the availability set and put the data nodes in the set of scales.

+1
source

false, AVSETs have 1 goal, and this is necessary to protect against downtime. Scale sets are a special kind of virtual machine where a single golden image is used for horizontal scaling.

0
source
  • The main difference is that Scale Sets have Identical Virtual Machines in which Available Sets do not require that they be identical.

  • The availability set, in fact, is intended to increase the availability of the application if one primary VM is not working / needs to update another virtual machine from Fault / Update can be provided

    Scales on the other hand, by concept, are designed to automatically scale (horizontally) in the application, where the load can vary greatly to meet more complex needs.

  • Creating a new virtual machine in Azure is easier if necessary for Scale sets, since all other virtual machines are the same in all aspects and a copy of one golden copy.

See details

https://docs.microsoft.com/en-us/azure/virtual-machine-scale-sets/ https://docs.microsoft.com/en-us/cli/azure/vm/availability-set?view= azure-cli-latest

0
source

All Articles