Introduction

Designing an application that incorporates Google Cloud SQL requires some thought. There are several factors to consider regarding security, performance, fault tolerance and availability. Incorrectly implementing one of these areas can affect the other areas, usually negatively.

In this article, we will start with a simple example, written in Node.js. Then we will analyze this example, find issues and explore improved solutions.

I created a GitHub repository with the files in this article.

Connection Management

A typical application opens and closes connections as required. Opening connections to a database server is typically considered an expensive operation. Database servers usually impose a limit on the number of simultaneous connections. Failing to close connections can result in a Denial-of-service (DoS) for your own services.

For container-based deployments (App Engine, Cloud Functions, Cloud Run, Containers on GCE, Kubernetes), connection management or the lack of, can affect cold-start times (waiting for a new database connection) and/or limit the number of containers that can be simultaneously deployed (hitting connection limits blocks new containers from getting new connections).

Google Cloud SQL Connection Limits:

By implementing connection management, connections can be shared, reused and quantity limited. Sharing connections improves connection latency and performance. Limiting the number of connections created can detect code bugs that fail to release connections and can help prevent self-inflicted DoS of your database resources. Connection management can detect failed connections and reopen each connection with a database replica server improving high availability.

High Availability

The Google Cloud SQL High Availability configuration, which requires creating an additional instance, provides data redundancy. This configuration consists of a primary instance (master) and a failover replica (slave). The master and slaves can be located in different zones to improve high availability.

Google Cloud SQL for MySQL uses semisynchronous replication for data synchronization from the master to the slave and asynchronous replication between the master and the read-only replicas (also called slaves).

MySQL 5.7 Replication

Load Balancing

Google Cloud SQL supports load balancing for read-type requests. For requests that update (write) the database, load balancing is not supported. Write requests must be sent to the master instance. Load balancing is implemented by adding Read Replicas.

A read replica provides a read-only copy of the master. Read replicas do not provide high availability as a master cannot fail over to a read replica. Read replicas can be a different machine type than the master instance. You can have more than one read replica.

A failover replica can also be used as a read replica. In the examples below, we load balance read requests on the master, failover replica and read replica.

Connection management can distribute read-type requests between the master, failover replica and the read replicas. This can be in a random or round-robin fashion.

Failover

If a Google Cloud SQL High Availability master instance becomes unresponsive, Cloud SQL automatically switches to the failover replica. The failover replica is promoted to the primary instance role (master). The instance name and IP address move to the failover replica. Once this completes a new failover replica is created and the old master is deleted and a new failover replica is created.

During this transition, requests to the Cloud SQL cluster can fail. Implementing connection management with retries and traffic distribution (load balancing) is necessary for true high availability.

Load Balancing plus Failover

In my testing of Google Cloud SQL for MySQL, I have determined that the best configuration is combining a failover replica with a read replica and cluster connection management. If a read-type request fails, it will be retried on another instance. If a write-type request fails, a time delay with retries is necessary while waiting for the failover replica to become the master.

Version #1 – Simple Version

Let’s start with a very simple program that connects to Cloud SQL and displays the name of each database on the Cloud SQL server. The user “sqluser” must have either the MySQL “SHOW DATABASES” privilege or have privileges to each database.

The configuration file which provides the Cloud SQL credentials – myconfig.json:

Example program:

The above example program works, but has several problems/limitations:

  • Security. SSL is not being used. This means that the login credentials are being sent in the clear over TCP port 3306.
    • Solution: Either implement SSL or use the Google Cloud Proxy to implement TLS connections. I discuss the Cloud SQL Proxy in this article.
    • SSL added in code version #2.
    • Cloud SQL Proxy added in code version #5 (TCP) and #6 (Unix Sockets).
  • Security. It is not clear if the server is limiting the number of connections that a user can open. If unlimited, a program bug can consume the maximum number of connections and cause a Denial of Service (DoS) of the Cloud SQL instance. We will explore this issue in another article. Connection management can help detect and mitigate this issue (see code version #3).
  • Performance: The example code is opening a connection to Cloud SQL and then closing the connection. Creating connections is an expensive operation. No connection management is present.
    • Solution: Use connection pooling to manage connections.
    • Connection management added in code version #3.
  • Availability: The example code does not retry failed connection attempts.
    • Solution: Implement connection retries and exponential backoff.
    • Failover, retries and read replicas added in code version #4.
  • Availability: The example code does not implement load balancing and failover.
    • Solution: Implement Cloud SQL Failover and Read Replicas.
    • Failover, retries and read replicas added in code version #4.

Version #2 – Implement SSL Connections

The first improvement that I will make is adding SSL to the example program. This requires three items from the Cloud SQL server:

  • SSL Server Certificate. This is a PEM formatted file of all available Cloud SQL SSL server certificates. This can be downloaded anytime.
  • SSL Client Certificate. This is a PEM formatted file of the client’s certificate. This can be downloaded anytime once created.
  • SSL Client Private Key. This is a PEM formatted file of the client’s private key. This can only be downloaded once. If lost, you must create a new client certificate.

Steps to create SSL certificates:

  1. Go to the Google Cloud Console – SQL
  2. Log in to the console or confirm which login credentials you are using.
  3. Confirm the project that you want to use.
  4. Select the Cloud SQL Instance by clicking on the “Instance ID”.
  5. Click on the “CONNECTIONS” tab.
  6. Under “Configure SSL client certificates,” click “Create a client certificate”.
  7. Enter a unique identifier (name) for your SSL certificates.
  8. A “New SSL certificate created” dialog appears.
    1. Download the three certificate files:
      1. Download client-key.pem
      2. Download client-cert.pem
      3. Download server-ca.pem
    2. Copy the mysql example (the text in black). We will use this to test SSL connectivity.
    3. Click CLOSE.

The dialog looks similar to this:

In the configuration, file myconfig.json add the SSL section to specify the correct path and filename of the three SSL certificate files downloaded from the previous step.

The changes to add SSL are small. Review lines 10 – 14.

The modified program to support SSL:

Version #3 – Implement Connection Pooling

The changes to add connection pooling are:

  • Line 6: Switch from mysql.createConnection() to mysql.createPool().
  • Line 15: Limit the number of connections to 8 (change for your requirements).
  • Line 16: Specify what to do if there are no more connections.
  • Line 23: Use pool.query() instead of connecting and then using con.query().
    • The benefit is the automatic release of the connection when the query completes.
    • Connection handles can be reused improving performance.

The modified program to support SSL:

Version #4 – Implement Connection Clustering

The following code implements connection management, high availability, and failover with retries.

The configuration file myconfig_pool_ssl.json is more complicated as we have three instances (master, failover replica and read replica).

 

Version #5 – Add Google Cloud SQL Proxy (TCP) instead of SSL

The only change to support the Google Cloud SQL Proxy is to use a new configuration file. Notice that I have added port numbers as the Cloud SQL instances are accessed via their proxy port number.

This is the command to start the Cloud SQL Proxy using TCP:

To understand how this command works:

myproject:us-central1:myinstance is the Google Cloud SQL Instance connection name.

tcp:3306 translates to the following lines in the above configuration file.

  • “host”: “127.0.0.1”
  • “port”: “3306”

This means that the Google Cloud SQL Proxy is listening on 127.0.0.1 (localhost) on port 3306 for connections from the local machine. Once a connection is received on port 3306, the proxy forwards that traffic to the Cloud SQL instance named myproject:us-central1:myinstance.

A local connection to port 3307 will forward traffic to myproject:us-central1:myinstance-failover.

A local connection to port 3308 will forward traffic to myproject:us-central1:myinstance-replica.

Version #6 – Add Google Cloud SQL Proxy (Unix Sockets) instead of SSL

The only change to support the Google Cloud SQL Proxy is to use a new configuration file. Notice that this version uses Unix Sockets instead of TCP address plus Port number.

This is the command to start the Cloud SQL Proxy using Unix Sockets on Linux:

Summary

It is fairly easy to improve a SQL database client’s security, availability and fault tolerance by implementing the correct configurations and features.

More Information

Credits

I write free articles about technology. Recently, I learned about Pexels.com which provides free images. The image in this article is courtesy of Piet Bakker at Pexels.