Hacker News new | ask | show | jobs
by kd22 2969 days ago
Can someone shed some light on how this tool compares to something like Flyway?
1 comments

It's an alternative to e.g. pt-online-schema-change [0]. The problem is that, for very large mysql tables / clusters, running DDL against the tables live will lock up reads/writes against the table for ages. These tools allow you to run those changes without taking downtime.

https://www.percona.com/doc/percona-toolkit/LATEST/pt-online...