|
| 1 | +`gh-ost` has been updated to work with Amazon RDS however due to GitHub not relying using AWS for databases, this documentation is community driven so if you find a bug please [open an issue][new_issue]! |
| 2 | + |
| 3 | +# Amazon RDS |
| 4 | + |
| 5 | +## Limitations |
| 6 | + |
| 7 | +- No `SUPER` privileges. |
| 8 | +- `gh-ost` runs should be setup use [`--assume-rbr`][assume_rbr_docs] and use `binlog_format=ROW`. |
| 9 | +- Aurora does not allow editing of the `read_only` parameter. While it is defined as `{TrueIfReplica}`, the parameter is non-modifiable field. |
| 10 | + |
| 11 | +## Aurora |
| 12 | + |
| 13 | +#### Replication |
| 14 | + |
| 15 | +In Aurora replication, you have separate reader and writer endpoints however because the cluster shares the underlying storage layer, `gh-ost` will detect it is running on the master. This becomes an issue when you wish to use [migrate/test on replica][migrate_test_on_replica_docs] because you won't be able to use a single cluster in the same way you would with MySQL RDS. |
| 16 | + |
| 17 | +To work around this, you can follow along the [AWS replication between clusters documentation][aws_replication_docs] for Aurora with one small caveat. For the "Create a Snapshot of Your Replication Master" step, the binlog position is not available in the AWS console. You will need to issue the SQL query `SHOW SLAVE STATUS` or `aws rds describe-events` API call to get the correct position. |
| 18 | + |
| 19 | +#### Percona Toolkit |
| 20 | + |
| 21 | +If you use `pt-table-checksum` as a part of your data integrity checks, you might want to check out [this patch][percona_toolkit_patch] which will enable you to run `pt-table-checksum` with the `--no-binlog-format-check` flag and prevent errors like the following: |
| 22 | + |
| 23 | +``` |
| 24 | +03-24T12:51:06 Failed to /*!50108 SET @@binlog_format := 'STATEMENT'*/: DBD::mysql::db do failed: Access denied; you need (at least one of) the SUPER privilege(s) for this operation [for Statement "/*!50108 SET @@binlog_format := 'STATEMENT'*/"] at pt-table-checksum line 9292. |
| 25 | +
|
| 26 | +This tool requires binlog_format=STATEMENT, but the current binlog_format is set to ROW and an error occurred while attempting to change it. If running MySQL 5.1.29 or newer, setting binlog_format requires the SUPER privilege. You will need to manually set binlog_format to 'STATEMENT' before running this tool. |
| 27 | +``` |
| 28 | + |
| 29 | +#### Preflight checklist |
| 30 | + |
| 31 | +Before trying to run any `gh-ost` migrations you will want to confirm the following: |
| 32 | + |
| 33 | +- [ ] You have a secondary cluster available that will act as a replica. Rule of thumb here has been a 1 instance per cluster to mimic MySQL-style replication as opposed to Aurora style. |
| 34 | +- [ ] The database instance parameters and database cluster parameters are consistent between your master and replicas |
| 35 | +- [ ] Executing `SHOW SLAVE STATUS\G` on your replica cluster displays the correct master host, binlog position, etc. |
| 36 | +- [ ] Database backup retention is greater than 1 day to enable binlogs |
| 37 | +- [ ] You have setup [`hooks`][ghost_hooks] to issue RDS procedures for stopping and starting replication. (see [github/gh-ost#163][ghost_rds_issue_tracking] for examples) |
| 38 | + |
| 39 | +[new_issue]: https://github.com/github/gh-ost/issues/new |
| 40 | +[assume_rbr_docs]: https://github.com/github/gh-ost/blob/master/doc/command-line-flags.md#assume-rbr |
| 41 | +[migrate_test_on_replica_docs]: https://github.com/github/gh-ost/blob/master/doc/cheatsheet.md#c-migratetest-on-replica |
| 42 | +[aws_replication_docs]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Aurora.Overview.Replication.MySQLReplication.html |
| 43 | +[percona_toolkit_patch]: https://github.com/jacobbednarz/percona-toolkit/commit/0271ba6a094da446a5e5bb8d99b5c26f1777f2b9 |
| 44 | +[ghost_hooks]: https://github.com/github/gh-ost/blob/master/doc/hooks.md |
| 45 | +[ghost_rds_issue_tracking]: https://github.com/github/gh-ost/issues/163 |
0 commit comments