メイン コンテンツにスキップ

 Subscribe

SQL Server AlwaysOn Availability Groups on Azure Infrastructure services has been supported since August of 2013. Internal load balancing (ILB) for Azure services was previewed in May 2014 and went into General Availability in July. Today, we are excited to bring both these technologies together; SQL Server AlwaysOn Availability Groups can now be run with ILB. Availability Group is SQL Server’s flagship solution for high availability and disaster recovery. The Availability Group Listener allows client applications to seamlessly connect to the primary replica, irrespective of the number of the replicas in the configuration.

The listener (DNS) name is mapped to a load-balanced IP address and Azure’s load balancer directs the incoming traffic to only the primary server in the replica set. Until now, this load-balanced IP address had to be a public IP address reachable from the Internet. If you wanted to restrict access to the listener only to trusted entities, you needed to use endpoint access control lists (ACLs). However in certain scenarios and usually over time, it could be cumbersome to maintain the ACLs.

To greatly help in this regard, Azure now announces ILB support for SQL Server AlwaysOn (listener) endpoints. You now have control over the accessibility of the listener and can choose the load-balanced IP address from a specific subnet in your Virtual Network (VNet). By using ILB on the listener, the SQL server endpoint (e.g. Server=tcp:ListenerName,1433;Database=DatabaseName) is accessible only by:

  • Services and VMs in the same Virtual network
  • Services and VMs from connected on-premises network
  • Services and VMs from inter connected VNets

ILB_SQLAO_NewPic

Internal Load balancer is still not exposed in the Azure portal and will need to be configured through powershell scripts as shown below:

*In the example below, I’m using a Virtual network that contains a subnet ‘Subnet-1’

# Add Internal Load Balancer to the service 
Add-AzureInternalLoadBalancer -InternalLoadBalancerName ILB_SQL_AO -SubnetName Subnet-1 -ServiceName SqlSvc

# Add load balanced endpoints for ILB on each VM
Get-AzureVM -ServiceName SqlSvc -Name sqlsvc1 | Add-AzureEndpoint -Name "LisEUep" -LBSetName "ILBSet1" -Protocol tcp -LocalPort 1433 -PublicPort 1433 -ProbePort 59999 -ProbeProtocol tcp -ProbeIntervalInSeconds 10 –DirectServerReturn $true -InternalLoadBalancerName ILB_SQL_AO | Update-AzureVM 
Get-AzureVM -ServiceName SqlSvc -Name sqlsvc2 | Add-AzureEndpoint -Name "LisEUep" -LBSetName "ILBSet1" -Protocol tcp -LocalPort 1433 -PublicPort 1433 -ProbePort 59999 -ProbeProtocol tcp -ProbeIntervalInSeconds 10 –DirectServerReturn $true -InternalLoadBalancerName ILB_SQL_AO | Update-AzureVM

For more information on ILB, please refer to the MSDN documentation or previous blog post on this topic.

  • Explore

     

    Let us know what you think of Azure and what you would like to see in the future.

     

    Provide feedback

  • Build your cloud computing and Azure skills with free courses by Microsoft Learn.

     

    Explore Azure learning


Join the conversation