We have a client which require to migrate from SQL Server v2016 in On Premises to a services managed as Cloud SQL with the same engine SQL Server with version 2017.
Our client has performance and connections problems in some peak times during during the month. So in addition they want to increase the maximum concurrent connections supported by SQL Server engine. In the official documentation for SQL Server v2017 or higher, the maximum value is 32767 concurrent connections, doesn't vary.
¿Is it possible to implement a infrastructure using Cloud SQL (SQL Server) that allows to increase more than 32767 concurrent connections?
Thanks in advance for your guidance.
Solved! Go to Solution.
According to this documentation:
The actual number of user connections allowed depends on the version of SQL Server that you are using, and the limits of your application or applications and hardware. SQL Server allows a maximum of 32,767 user connections.
The limit for the concurrent connections is the same as SQL Server v2017, but there is a way that increases the number of connections. This limit is for a primary instance, but you can create a duplicate called read replica. You can create up to 8 read replicas, and each replica will have 32,767 user connections. The read replica is an exact copy of the primary instance. Data and other changes on the primary instance are updated in almost real time on the read replica. You will have 32,767 extra connections, but there are a few limitations to the read replica; here a few that need to be considered:
The read replicas are used to alleviate the connection load; the primary instance will manage reads and writes, while the read replica will only manage reads. You use a read replica to offload work from a Cloud SQL instance.
According to this documentation:
The actual number of user connections allowed depends on the version of SQL Server that you are using, and the limits of your application or applications and hardware. SQL Server allows a maximum of 32,767 user connections.
The limit for the concurrent connections is the same as SQL Server v2017, but there is a way that increases the number of connections. This limit is for a primary instance, but you can create a duplicate called read replica. You can create up to 8 read replicas, and each replica will have 32,767 user connections. The read replica is an exact copy of the primary instance. Data and other changes on the primary instance are updated in almost real time on the read replica. You will have 32,767 extra connections, but there are a few limitations to the read replica; here a few that need to be considered:
The read replicas are used to alleviate the connection load; the primary instance will manage reads and writes, while the read replica will only manage reads. You use a read replica to offload work from a Cloud SQL instance.