1

I am creating BasicLoadBalancer on Azure with scaleset. While adding the backend pool scaleset instance getting an below error

Virtual Machine Scale Set cannot use a basic SKU load balancer when singlePlacementGroup property is false (large scale enabled).

James Z
  • 12,209
  • 10
  • 24
  • 44
Shiv
  • 144
  • 10

2 Answers2

2

I am able to add the Basic Load Balancer with Virtual Machine Scale after below steps

  1. Deleted existing scale set as we have max of 100 only vm can scale.
  2. Re-crated the scale set as Virtual Machine Scale Set -> update ResourceGrup/Name/Region/ -> Disk -> Networking -> Scaling -> Management -> Health ->Advanced (Here uncheck "Allocation policy>Enable scaling beyond 100 instances) -> Tag -> Review and Create.

After re-creating by unchecking Enable Scaling beyound 100 instance, able to add back end pool with Basic Load Balancer. thank you

Shiv
  • 144
  • 10
  • Thanks this helps! Also, note you may have to select radio "Spreading algorithm" as "Fixed spreading" for the checkbox would be greyed out. – Rajesh Swarnkar Feb 23 '23 at 06:11
0

Documentation: Working with large virtual machine scale sets

With single placement group a scale set can have up to 100 VMs.

With multiple placement groups a scale set can have up to 1000 VMs. It requires Standard Load Balancer though, Basic won't work.

You can specify singlePlacementGroup when deploying through all of Portal, CLI or ARM. Unless you want >100 instances, in which case the only option is multiple placement groups.

Kombajn zbożowy
  • 8,755
  • 3
  • 28
  • 60
  • thanks for your reply, with your concern we can have more than > 100 instance in Azure Load Balancer with basic sale set ? – Shiv Jan 26 '22 at 03:42
  • 1
    No, you can't have >100 instances with Basic Load Balancer. Note - scale set doesn't have SKUs, it's Load Balancer with Basic and Standard SKU. – Kombajn zbożowy Jan 26 '22 at 09:46
  • With new Feature with Basic Load Balancer we add instance more than > 100 for Basic Load Balancer. – Shiv Jan 27 '22 at 11:35