SQL Server Availability Groups in GCP
I wanted to share some tips on how to create a SQL Server Availability Group in GCP. If you have tried before and put both nodes in the same subnet you may have noticed that it will not work. In order to make it work you need to put the nodes in different subnets.
You should get familiar with CDIR notation. Don’t need to be an expert but just understand the difference between a /16 netmask (255.255.0.0) vs /24 netmask (255.255.255.0) for example. You can follow the step-by-step instructions found at [Configuring SQL Server Availability Groups]. In this post I just want to provide some extra information in case you need to customize the steps for your own environment.
Hostname | Subnet – CIDR | Hostname IP | Guest OS CIDR | IPs for WSFC & Listener |
---|---|---|---|---|
cluster-sql1 | wsfcesubnet1 – 10.0.0.0/24 | 10.0.0.4 | 10.0.0.0/16 | 10.0.1.4; 10.0.1.5 |
cluster-sql2 | wsfcesubnet2 – 10.1.0.0/24 | 10.1.0.4 | 10.1.0.0/16 | 10.1.1.4; 10.1.1.5 |
This is a summary of the steps:
- Create a VPC network with 3 subnets. Only 2 are absolutely required, the third one is for the domain controller which could also be in one of the two subnets.
- wsfcsubnet1 – 10.0.0.0/24 for Node 1
- wsfcsubnet2 – 10.1.0.0/24 for Node 2
- wsfcsubnet3 – 10.2.0.0/24 for Domain Controller
- Create firewall rules to allow all traffic between the 3 subnets and also for RDP.
- Create a Windows instance to be the domain controller in the subnet wsfcsubnet3 and create a Windows AD Domain.
- Create the first instance cluster-sql1 in the subnet wsfcsubnet1 and assign the IP 10.0.0.4.
- Create the second instance cluster-sql2 in the subnet wsfcsubnet2 and assign the IP 10.1.0.4.
- Connect to both instances using RDP. You first need to create a Windows username/password.
- Now comes the most critical part of the process:
- Change the IP to be static instead of DHCP.
- The same command will change the subnet mask in the Windows guest OS to /16 (255.255.0.0). Notice that /16 has more IP addresses than /24 which is the subnet where the node resides. Later on we will choose IPs outside the /24 range but inside the /16 range for the Windows Failover Cluster and Listener.
- The same command above will make you lose the connection to the server, so you will need to re-connect again.
- Set the local DNS to be the domain controller (10.2.0.100).
- Open the firewall ports for Availability Groups and SQL Server.
- In GCP create four routes. The routes will send traffic intended for the Windows Failover Cluster or Listener back to the corresponding node. Every node has essentially two extra IPs assigned to them.
- Create the Windows Failover Cluster
- Create the SQL Server Availability Group
Below is a diagram on how the two nodes are setup.
The most critical part is to set the netmask of the Windows guest OS wider than the netmask of the GCP subnet (/16 has more IPs than /24). Then for the WSFC and Listener we choose IPs outside the /24 range but within the /16 range. The GCE Advanced Router will use the 4 routes that we created to route traffic to the corresponding node.