Abstract: Heating up the InnoDB Buffer Pool
during the MySQL instance startup should significantly improve
InnoDB Performance in the beginning of the life of the Instance.
This is achieved by sequential scans of the needed data instead
of random I/O reads which would happen when we just let the
system work it out by itself.
How to find the database objects which can be loaded during MySQL
start-up and how to load them automatically is described in this
article.
New Table in the INFORMATION_SCHEMA
Some of my colleagues have already described methods on how to heat up a Slave after its startup. [1, 2, …
[Read more]