Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 1002 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 1002 Bytes

pt-online-schema-change-analyze

Analyze a MySQL table before swapping it in place at the end of a migration.

In certain cases it is recommended not to allow MySQL to recalculate table statistics automatically as it can cause a drift in query plans. More info here and here.

This can cause a problems when using pt-online-schema-change as the statistics might not be correct on the new table. This plugin analyzes the table right before the swap is done which allows MySQL to recalculate the statistics and avoids slow queries.

To use the plugin just add:

--plugin /path/to/plugin/pt-online-schema-change-analyze.pl

to your pt-online-schema-change command.