Skip to content

Commit f6126be

Browse files
committed
Minor fixes
1 parent 0260b6c commit f6126be

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

docs/integrations/data-ingestion/clickpipes/mysql/source/aurora.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ This step-by-step guide shows you how to configure Amazon Aurora MySQL to replic
2525

2626
The binary log is a set of log files that contain information about data modifications made to a MySQL server instance, and binary log files are required for replication. To configure binary log retention in Aurora MySQL, you must [enable binary logging](#enable-binlog-logging) and [increase the binlog retention interval](#binlog-retention-interval).
2727

28-
### 1. Enable binary logging via automated backup {#enable-binlog-logging-aurora}
28+
### 1. Enable binary logging via automated backup {#enable-binlog-logging}
2929

30-
The automated backups feature determines whether binary logging is turned on or off for MySQL. It can be set in the AWS console:
30+
The automated backups feature determines whether binary logging is turned on or off for MySQL. Automated backups can be configured for your instance in the RDS Console by navigating to **Modify** > **Additional configuration** > **Backup** and selecting the **Enable automated backups** checkbox (if not selected already).
3131

3232
<Image img={rds_backups} alt="Enabling automated backups in Aurora" size="lg" border/>
3333

34-
We recommend setting backup retention to a reasonably long value, depending on the replication use case.
34+
We recommend setting the **Backup retention period** to a reasonably long value, depending on the replication use case.
3535

36-
### 2. Increase the binlog retention interval {#binlog-retention-interval-aurora}
36+
### 2. Increase the binlog retention interval {#binlog-retention-interval}
3737

3838
:::warning
3939
If ClickPipes tries to resume replication and the required binlog files have been purged due to the configured binlog retention value, the ClickPipe will enter an errored state and a resync is required.
@@ -49,18 +49,18 @@ mysql=> call mysql.rds_set_configuration('binlog retention hours', 72);
4949

5050
If this configuration isn't set or is set to a low interval, it can lead to gaps in the binary logs, compromising ClickPipes' ability to resume replication.
5151

52-
## Configure binlog settings in the parameter group {#binlog-parameter-group}
52+
## Configure binlog settings {#binlog-settings}
5353

54-
The parameter group can be found when you click on your MySQL instance in the RDS Console, and then heading over to the `Configurations` tab.
54+
The parameter group can be found when you click on your MySQL instance in the RDS Console, and then navigate to the **Configuration** tab.
5555

5656
:::tip
57-
If you have a MySQL cluster, the parameters below can be found in the [DB Cluster](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.CreatingCluster.html) parameter group instead of the DB instance group.
57+
If you have a MySQL cluster, the parameters below can be found in the [DB cluster](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.CreatingCluster.html) parameter group instead of the DB instance group.
5858
:::
5959

6060
<Image img={aurora_config} alt="Where to find parameter group in Aurora" size="lg" border/>
6161

6262
<br/>
63-
Click the parameter group link, which will take you to its dedicated page. You should see an `Edit` button in the top right.
63+
Click the parameter group link, which will take you to its dedicated page. You should see an **Edit** button in the top right.
6464

6565
<Image img={edit_button} alt="Edit parameter group" size="lg" border/>
6666

@@ -80,7 +80,7 @@ The following parameters need to be set as follows:
8080
<Image img={binlog_row_image} alt="Binlog row image" size="lg" border/>
8181

8282
<br/>
83-
Then, click on `Save Changes` in the top right corner. You may need to reboot your instance for the changes to take effect — a way of knowing this is if you see `Pending reboot` next to the parameter group link in the `Configurations` tab of the Aurora instance.
83+
Then, click on **Save Changes** in the top right corner. You may need to reboot your instance for the changes to take effect — a way of knowing this is if you see `Pending reboot` next to the parameter group link in the **Configuration** tab of the Aurora instance.
8484

8585
## Enable GTID mode (recommended) {#gtid-mode}
8686

@@ -93,12 +93,12 @@ The MySQL ClickPipe also supports replication without GTID mode. However, enabli
9393
GTID-based replication is supported for Amazon Aurora MySQL v2 (MySQL 5.7) and v3 (MySQL 8.0), as well as Aurora Serverless v2. To enable GTID mode for your Aurora MySQL instance, follow these steps:
9494

9595
1. In the RDS Console, click on your MySQL instance.
96-
2. Click on the `Configurations` tab.
96+
2. Click on the **Configuration** tab.
9797
3. Click on the parameter group link.
98-
4. Click on the `Edit` button in the top right corner.
98+
4. Click on the **Edit** button in the top right corner.
9999
5. Set `enforce_gtid_consistency` to `ON`.
100100
6. Set `gtid-mode` to `ON`.
101-
7. Click on `Save Changes` in the top right corner.
101+
7. Click on **Save Changes** in the top right corner.
102102
8. Reboot your instance for the changes to take effect.
103103

104104
<Image img={enable_gtid} alt="GTID enabled" size="lg" border/>
@@ -130,7 +130,7 @@ Connect to your Aurora MySQL instance as an admin user and execute the following
130130

131131
### IP-based access control {#ip-based-access-control}
132132

133-
To restrict traffic to your Aurora MySQL instance, add the [documented static NAT IPs](../../index.md#list-of-static-ips) to the `Inbound rules` of your Aurora security group.
133+
To restrict traffic to your Aurora MySQL instance, add the [documented static NAT IPs](../../index.md#list-of-static-ips) to the **Inbound rules** of your Aurora security group.
134134

135135
<Image img={security_group_in_rds_mysql} alt="Where to find security group in Aurora MySQL?" size="lg" border/>
136136

docs/integrations/data-ingestion/clickpipes/mysql/source/rds.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ This step-by-step guide shows you how to configure Amazon RDS MySQL to replicate
2525

2626
The binary log is a set of log files that contain information about data modifications made to an MySQL server instance, and binary log files are required for replication. To configure binary log retention in RDS MySQL, you must [enable binary logging](#enable-binlog-logging) and [increase the binlog retention interval](#binlog-retention-interval).
2727

28-
### 1. Enable binary logging via automated backup{#enable-binlog-logging}
28+
### 1. Enable binary logging via automated backup {#enable-binlog-logging}
2929

30-
The automated backups feature determines whether binary logging is turned on or off for MySQL. It can be set in the AWS console:
30+
The automated backups feature determines whether binary logging is turned on or off for MySQL. Automated backups can be configured for your instance in the RDS Console by navigating to **Modify** > **Additional configuration** > **Backup** and selecting the **Enable automated backups** checkbox (if not selected already).
3131

3232
<Image img={rds_backups} alt="Enabling automated backups in RDS" size="lg" border/>
3333

34-
We recommend setting backup retention to a reasonably long value, depending on the replication use case.
34+
We recommend setting the **Backup retention period** to a reasonably long value, depending on the replication use case.
3535

36-
### 2. Increase the binlog retention interval{#binlog-retention-interval}
36+
### 2. Increase the binlog retention interval {#binlog-retention-interval}
3737

3838
:::warning
3939
If ClickPipes tries to resume replication and the required binlog files have been purged due to the configured binlog retention value, the ClickPipe will enter an errored state and a resync is required.
@@ -49,18 +49,18 @@ mysql=> call mysql.rds_set_configuration('binlog retention hours', 72);
4949

5050
If this configuration isn't set or is set to a low interval, it can lead to gaps in the binary logs, compromising ClickPipes' ability to resume replication.
5151

52-
## Configure binlog settings in the parameter group {#binlog-parameter-group}
52+
## Configure binlog settings {#binlog-settings}
5353

54-
The parameter group can be found when you click on your MySQL instance in the RDS Console, and then heading over to the `Configurations` tab.
54+
The parameter group can be found when you click on your MySQL instance in the RDS Console, and then navigate to the **Configuration** tab.
5555

5656
:::tip
57-
If you have a MySQL cluster, the parameters below can be found in the [DB Cluster](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.CreatingCluster.html) parameter group instead of the DB instance group.
57+
If you have a MySQL cluster, the parameters below can be found in the [DB cluster](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.CreatingCluster.html) parameter group instead of the DB instance group.
5858
:::
5959

6060
<Image img={rds_config} alt="Where to find parameter group in RDS" size="lg" border/>
6161

6262
<br/>
63-
Click the parameter group link, which will take you to its dedicated page. You should see an `Edit` button in the top right.
63+
Click the parameter group link, which will take you to its dedicated page. You should see an **Edit** button in the top right.
6464

6565
<Image img={edit_button} alt="Edit parameter group" size="lg" border/>
6666

@@ -79,7 +79,7 @@ The following parameters need to be set as follows:
7979
<Image img={binlog_row_image} alt="Binlog row image to FULL" size="lg" border/>
8080

8181
<br/>
82-
Then, click on `Save Changes` in the top right corner. You may need to reboot your instance for the changes to take effect — a way of knowing this is if you see `Pending reboot` next to the parameter group link in the `Configurations` tab of the RDS instance.
82+
Then, click on **Save Changes** in the top right corner. You may need to reboot your instance for the changes to take effect — a way of knowing this is if you see `Pending reboot` next to the parameter group link in the **Configuration** tab of the RDS instance.
8383

8484
## Enable GTID Mode {#gtid-mode}
8585

@@ -92,12 +92,12 @@ The MySQL ClickPipe also supports replication without GTID mode. However, enabli
9292
GTID-based replication is supported for Amazon RDS for MySQL versions 5.7, 8.0 and 8.4. To enable GTID mode for your Aurora MySQL instance, follow these steps:
9393

9494
1. In the RDS Console, click on your MySQL instance.
95-
2. Click on the `Configurations` tab.
95+
2. Click on the **Configuration** tab.
9696
3. Click on the parameter group link.
97-
4. Click on the `Edit` button in the top right corner.
97+
4. Click on the **Edit** button in the top right corner.
9898
5. Set `enforce_gtid_consistency` to `ON`.
9999
6. Set `gtid-mode` to `ON`.
100-
7. Click on `Save Changes` in the top right corner.
100+
7. Click on **Save Changes** in the top right corner.
101101
8. Reboot your instance for the changes to take effect.
102102

103103
<Image img={enable_gtid} alt="GTID enabled" size="lg" border/>
@@ -129,7 +129,7 @@ Connect to your RDS MySQL instance as an admin user and execute the following co
129129

130130
### IP-based access control {#ip-based-access-control}
131131

132-
To restrict traffic to your Aurora MySQL instance, add the [documented static NAT IPs](../../index.md#list-of-static-ips) to the `Inbound rules` of your RDS security group.
132+
To restrict traffic to your Aurora MySQL instance, add the [documented static NAT IPs](../../index.md#list-of-static-ips) to the **Inbound rules** of your RDS security group.
133133

134134
<Image img={security_group_in_rds_mysql} alt="Where to find security group in RDS MySQL?" size="lg" border/>
135135

0 commit comments

Comments
 (0)