Is there any blog or document, which talks about the steps followed and hands-on experience in dealing with migration in both ways?
- Pre & Post migration checks
- Migration steps and Data sync ups
- Integrity & Performance testing
- Challenges/Issues faced
- Does and Don’ts
etc …
Already going thru this: https://www.youtube.com/playlist?list=PLWhC0zeznqkk3k65j8N6DYtiZZ1HGEwcl
Thanks,
@midson Percona Server MySQL is a drop-in replacement for Community MySQL. Steps:
- Stop mysql
- Install percona repo
- Install Percona
- Start mysql
That’s it Just make sure the versions match.
Keep in mind that Percona Server is a drop in replacement for community but community limitations still apply.
I.e if you migrate from a major version to another (i.e 5.7 to 8.0) you should do functional/performance testing as usual
And also you cannot downgrade from a 8.0 version to a lower minor patch : https://dev.mysql.com/doc/refman/8.0/en/downgrading.html
Other than that you can switch binaries from same (or newer version) and it should be good
Thanks @matthewb @CTutte .
Any latest experience or update to this 10year old article:
@matthewb The reason for this question is:
Percona is OSS. Due to certain use-case or business req, if I need to switch to RDS like service, what is the effort needed? It is not get scared. But to be prepared. Please keep this doc in live and make major updates every 2 years.
1 Like
@midson,
The simplest way to migrate from Percona MySQL to RDS is a logical dump/load. Use mydumper/myloader to accomplish this. The effort is just time. RDS is just another MySQL server, so everything you know about MySQL on EC2/VM is basically the same with RDS. Expect to pay more $$ when moving to RDS. Make sure your business knows this before they make radical changes.
1 Like