The following sections cover how to configure CDC for an Amazon Aurora MySQL database.
Create a parameter group
Launch your Amazon RDS Dashboard.
In the Navigation Drawer, click Parameter Groups.
Click Create Parameter Group. The Create Parameter Group page appears.
Use the following table to populate the fields of this page:
Field Description Parameter group family Select the family that matches your database. Type Select DB Cluster Parameter Group. Group name Provide a name for the parameter group. Description Provide a description for the parameter group. Click Create.
Select the checkbox to the left of your newly created parameter group.
Under Parameter group actions, click Edit.
Set the following parameter values:
- For GTID-based replication (Preview):
Parameter Value binlog_format ROW
log_bin_use_v1_row_events 1
read_only 0
net_read_timeout 3600
net_write_timeout 3600
wait_timeout 86400
expire-logs-days 7
binlog_row_image FULL
max_allowed_packet 1G
(recommended value)log-replica-updates 1
enforce-gtid-consistency ON
gtid_mode
You can only set this parameter toON
ON
after you setenforce-gtid-consistency
toON
. In general,gtid_mode
can have the following values:OFF
OFF_PERMISSIVE
ON_PERMISSIVE
ON
gtid_mode
parameter one step at a time. For example, if the current mode is set toOFF
, do the following:- Change the setting to
OFF_PERMISSIVE
. - Change the setting to
ON_PERMISSIVE
. - Change the setting to
ON
.
- For binlog-based replication:
Parameter Value binlog_format ROW
Click Save Changes.
Assign the parameter group to the database instance
Launch your Amazon RDS Dashboard.
In the Navigation Drawer, click Databases, and then select your database instance.
From the Instance Actions menu, select Modify. The Modify DB Instance dialog appears.
In the Additional configuration section, select the database cluster parameter group that you created.
Set the Backup retention period to 7 days.
Click Continue.
In the Scheduling of Modifications pane, select the Apply immediately option.
Set the binary log retention period
Enter the following MySQL command:
call mysql.rds_set_configuration('binlog retention hours', 168);
Restart your MySQL server so that the changes you made can take effect.
Create a Datastream user
Create a Datastream user:
CREATE USER 'datastream'@'%' IDENTIFIED BY 'YOUR_PASSWORD';
Grant the following privileges to them:
GRANT REPLICATION SLAVE, SELECT, REPLICATION CLIENT ON *.* TO 'datastream'@'%'; GRANT EXECUTE ON PROCEDURE mysql.rds_show_configuration TO 'datastream'@'%'; FLUSH PRIVILEGES;
What's next
- Learn more about how Datastream works with MySQL sources.