image
Types of RDS Parameters
Start course
Difficulty
Intermediate
Duration
11m
Students
844
Ratings
5/5
Description

This course explores how to configure operational parameters for AWS Databases. We will cover some effective strategies for tuning your RDS databases to receive the most benefit for your workloads and we'll also dive into what parameter groups are, how parameter groups work, and some edge cases to watch out for.

If you have any feedback relating to this course, please contact us at support@cloudacademy.com.

Learning Objectives

  • Create your own parameter groups and apply them to an RDS database
  • Understand how parameter groups affect RDS instances and in what situations they are beneficial

Intended Audience

This lecture should be attended by those who are looking to further their database knowledge into the intermediate stages, or by those looking to understand the mechanisms behind tuning RDS databases.

Prerequisites

This lecture will talk about some of the more advanced ideas around Amazon RDS and databases in general, so it is highly recommended that you have a moderate to strong background in Amazon RDS and Relational databases.

Transcript

In this section, I want to take some time to highlight a few parameters that will showcase some important ideas.

Within the over 400 different parameters you can manage and change for RDS, there are a few themes you will notice: 

  • There are performance parameters - these will affect the way your database handles itself and the mechanisms that allow it to function.
  • There are security-related parameters - these will help to keep your data, users, connections, and everything else secure.
  • We have parameters that deal with how data is replicated within RDS - these help to keep your data alive in the event of downtime, crashes, and various catastrophic events.

Let's take a look at a few examples from each category and see how tuning them could affect our database.

Innodb_change_buffering - This parameter fits pretty squarely within the performance category. Its entire job is to let the database know how to deal with unbuffered changes to secondary indexes that are not in the buffer pool.  This table shows all the options you have available for this parameter and the default is normally set to all.

Modifying this parameter helps to reduce the large amount of i/o required to keep your secondary indexes accurate after using DML (data manipulation language) operations.

In the past, it was important to keep track of these lagging operations when disk i/o speed were relatively slow compared to today. However, with modern drives and speed increases, this is a parameter that can be pushed into the none position.  Leaving it set to all actually causes much longer shutdown times when pushing updates to your RDS databases.

Max_user_connections is a rather self-explanatory example compared to the previous one. It allows you to set a maximum number of simultaneous connections to the database. This value defaults to 0 which actually means there is no max connection cap. However, if you have a very sensitive database that you know should never have more than x number of connections at a time, this could be a very useful parameter to be aware of. Any additional connections above the allotted number will be declined with the message - “Warning: mysql_connect(): User xxxxxxxx already has more than ‘max_user_connections’ active connections”.

One of the biggest pains of development when working with databases is trying to optimize queries that are quick and effective. This parameter sets logging on queries that take over a certain amount of time to complete. That time is set by the long_query_time parameter, which works together with this one to log out queries that run over your determined time limit. 

By default this is set off - 0, but can be turned on by simply changing this to 1. Keep in mind, however, just because a query is long, does not mean that it is inefficient or is doing something wrong. This is just one measurement that can be used to help flag issues that may appear.

About the Author

William Meadows is a passionately curious human currently living in the Bay Area in California. His career has included working with lasers, teaching teenagers how to code, and creating classes about cloud technology that are taught all over the world. His dedication to completing goals and helping others is what brings meaning to his life. In his free time, he enjoys reading Reddit, playing video games, and writing books.