Help with replication filters - RDS Mysql

0

Hello,

We are trying setup a read replica with specific usecase. For that usecase, we need to replicate the subset of database tables and not all tables. We are trying to achive this selective table replication using replication filter.

As per documentation, these parameters should be available in parameter group configuration file. But we are unable to find these parameters.

An error occurred (InvalidParameterValue) when calling the ModifyDBParameterGroup operation: Could not find parameter with name: replicate-do-table

AWS Documentation : https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_MySQL.Replication.ReadReplicas.html#USER_MySQL.Replication.ReadReplicas.ReplicationFilters.Configuring

Requesting your assistance regarding same. Thanks

Mayank
asked 6 months ago331 views
1 Answer
1
Accepted Answer

Hello.

I checked the parameters from the management console, and the parameters exist.
Try changing it from the management console.
a

We also confirmed that changes can be made using the AWS CLI.
Make sure the parameter group you are specifying is for MySQL.

aws rds modify-db-parameter-group \
  --db-parameter-group-name test-mysql \
  --parameters "ParameterName=replicate-do-table,ParameterValue='mydb1.table1,mydb1.table2',ApplyMethod=immediate"
profile picture
EXPERT
answered 6 months ago
profile pictureAWS
EXPERT
reviewed 6 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions