ToolsDB has some MyISAM tables:
MariaDB [information_schema]> select ENGINE, count(*) from tables where ENGINE in ('InnoDB', 'MyISAM') group by ENGINE; +--------+----------+ | ENGINE | count(*) | +--------+----------+ | InnoDB | 8778 | | MyISAM | 482 | +--------+----------+ 2 rows in set (0.74 sec)
Since AIUI InnoDB deals better with replication than MyISAM does, this task is to check if some/most of those tables can be converted to InnoDB.