You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then click on `Save Changes` in the top-right. 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.
40
67
<br/>
41
68
:::tip
42
69
If you have a MySQL cluster, the above parameters would be found in a [DB Cluster](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.CreatingCluster.html) parameter group and not the DB instance group.
43
70
:::
44
71
72
+
## Enabling GTID Mode {#gtid-mode-aurora}
73
+
Global Transaction Identifiers (GTIDs) are unique IDs assigned to each committed transaction in MySQL. They simplify binlog replication and make troubleshooting more straightforward.
74
+
75
+
If your MySQL instance is MySQL 5.7, 8.0 or 8.4, we recommend enabling GTID mode so that the MySQL ClickPipe can use GTID replication.
76
+
77
+
To enable GTID mode for your MySQL instance, follow the steps as follows:
78
+
1. In the RDS Console, click on your MySQL instance.
79
+
2. Click on the `Configurations` tab.
80
+
3. Click on the parameter group link.
81
+
4. Click on the `Edit` button in the top-right corner.
82
+
5. Set the following parameters:
83
+
-`gtid_mode` to `OFF_PERMISSIVE`
84
+
-`enforce-gtid-consistency` to `ON`
85
+
6. Click on `Save Changes` in the top-right corner.
86
+
7. Reboot your instance for the changes to take effect.
87
+
8. Edit the parameter group again and set `gtid_mode` to `ON_PERMISSIVE`. Ensure `enforce-gtid-consistency` is `ON`.
88
+
9. Click on `Save Changes` in the top-right corner.
89
+
10. Reboot your instance for the changes to take effect.
90
+
11. Edit the parameter group again and set `gtid_mode` to `ON`. Ensure `enforce-gtid-consistency` is `ON`.
91
+
12. Click on `Save Changes` in the top-right corner.
92
+
13. Reboot your instance for the changes to take effect.
The MySQL ClickPipe also supports replication without GTID mode. However, enabling GTID mode is recommended for better performance and easier troubleshooting.
99
+
:::
100
+
45
101
## Configure a database user {#configure-database-user-aurora}
46
102
47
103
Connect to your Aurora MySQL instance as an admin user and execute the following commands:
Then click on `Save Changes` in the top-right. 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.
67
+
41
68
<br/>
42
69
:::tip
43
70
If you have a MySQL cluster, the above parameters would be found in a [DB Cluster](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.CreatingCluster.html) parameter group and not the DB instance group.
44
71
:::
45
72
73
+
## Enabling GTID Mode {#gtid-mode-rds}
74
+
Global Transaction Identifiers (GTIDs) are unique IDs assigned to each committed transaction in MySQL. They simplify binlog replication and make troubleshooting more straightforward.
75
+
76
+
If your MySQL instance is MySQL 5.7, 8.0 or 8.4, we recommend enabling GTID mode so that the MySQL ClickPipe can use GTID replication.
77
+
78
+
To enable GTID mode for your MySQL instance, follow the steps as follows:
79
+
1. In the RDS Console, click on your MySQL instance.
80
+
2. Click on the `Configurations` tab.
81
+
3. Click on the parameter group link.
82
+
4. Click on the `Edit` button in the top-right corner.
83
+
5. Set the following parameters:
84
+
-`gtid_mode` to `OFF_PERMISSIVE`
85
+
-`enforce-gtid-consistency` to `ON`
86
+
6. Click on `Save Changes` in the top-right corner.
87
+
7. Reboot your instance for the changes to take effect.
88
+
8. Edit the parameter group again and set `gtid_mode` to `ON_PERMISSIVE`. Ensure `enforce-gtid-consistency` is `ON`.
89
+
9. Click on `Save Changes` in the top-right corner.
90
+
10. Reboot your instance for the changes to take effect.
91
+
11. Edit the parameter group again and set `gtid_mode` to `ON`. Ensure `enforce-gtid-consistency` is `ON`.
92
+
12. Click on `Save Changes` in the top-right corner.
93
+
13. Reboot your instance for the changes to take effect.
The MySQL ClickPipe also supports replication without GTID mode. However, enabling GTID mode is recommended for better performance and easier troubleshooting.
100
+
:::
101
+
102
+
46
103
## Configure a database user {#configure-database-user-rds}
47
104
48
105
Connect to your RDS MySQL instance as an admin user and execute the following commands:
0 commit comments