Large tables can pose challenges for many operations when working with a database. Occasionally, we may need to modify the table definition. Since RDS replication does not use asynchronous for its replication, the typical switchover procedure is not feasible. However, the Blue/Green feature of RDS utilizes asynchronous replication, which allows us to update the table definition of large tables using the switchover procedure. 

The Blue/Green deployment strategy involves creating two separate but identical environments for an application. The current environment where the application runs is referred to as “Blue,” while the environment that contains the modifications or new version is called “Green.” This continuous deployment method allows the database to be updated with minimal downtime.

In this blog post, I will demonstrate how to alter a table whose primary key is nearing its maximum value using the Blue/Green environment.

For the following blog, please assume the following environment:

We can create a Blue/Green environment with the aforementioned environment in mind. This process will establish a new environment that mirrors the structure of the production environment. Please note that to create a Blue/Green environment, the cluster parameter must have binlog_format set to row.

To create the Blue/Green environment, use the dropdown menu for actions and select the “Create Blue/Green Deployment” button.

Set the identifier of the deployment:

Before creating the Blue/Green environment, please review the configuration carefully. Remember that you can change the Aurora version during the creation process. This option allows for validation checks before the upgrade since all data will be replicated in the green environment.

After creation, please wait until all nodes in the green environment are available.

Having the nodes available allows us to begin the modification process. However, changing the column data type in a replica environment may lead to replication issues. To avoid this, since we are increasing the column type from int to bigint, we need to set the value of replica_type_conversions in the cluster parameter group. We will set this variable to ALL_NON_LOSSY (https://dev.mysql.com/doc/mysql-replication-excerpt/8.0/en/replication-features-different-data-types.html).  

It’s important to take note of the following bug report: https://bugs.mysql.com/bug.php?id=82599, which could cause issues when using unsigned data. Once we have completed the necessary steps, we can proceed with all the required alterations.

Stopping the replica:

Consider the following table definitions for the changes:

Doing the alter change:

After completing the process, we can start the replication and wait for it to catch up.

Maintaining the replica in sync will enable the switchover; it’s also highly recommended that you stop the application writes during the switchover procedure.

By selecting the deployment option from the action button in the top right, we can access the switchover button action:

After clicking, a panel will appear to switch over:

Now, we just need to wait for the switchover:

After the procedure is complete, we can see that the green nodes, which are the ones where we changed the columns, are now referred to as “new-blue.” These nodes already have the endpoint used by the application. The blue environment is now called “old-blue”:

Once completed, we can perform any needed validation before deleting the nodes. The application can now return to regular operation, and after the validations are done, the deployment and old blue versions can be deleted.

Conclusion

The switchover procedure is a common practice used for various purposes; however, as previously mentioned, it cannot be accomplished using standard RDS replication. This limitation arises because RDS replication does not use the default asynchronous replication method found with MySQL’s binary log. Therefore, adopting a Blue/Green deployment strategy is a viable solution. 

For further reads regarding blue/green deployments, please refer to https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html
Also, please be familiar with the limitations of the blue/green deployments. You may see those on the following link: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments-considerations.html

FAQ

Is there any rollback?

Unfortunately, the Blue/Green Environment has no built-in rollback feature. However, it is possible to perform a manual rollback, as demonstrated in the following AWS blog post: https://aws.amazon.com/blogs/database/implement-a-rollback-strategy-after-an-amazon-aurora-mysql-blue-green-deployment-switchover/

Can I do MySQL upgrades with it?

Yes, using the Blue/Green for the MySQL upgrades is possible.

What happens if any error on the replica happens?

In case of a replica error, the switchover will not happen, and checking on the Log & events tab on the deployment, you’ll be able to see a similar error message: “Switchover from DB cluster beto-blog to beto-blog-green-usht2d was canceled due to replication errors on beto-blog-green-usht2d. Correct the replication errors and then switch over.”

Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments