I have a MySQL 1.5 GB MyISAM-table (1.0 GB data, 0.5 GB indexes) in production which I'm about to convert into InnoDB.
Since the table is used in production I'd like to make the downtime as short as possible.
My questions:
What MySQL configuration options should be adjusted in order to speed up
ALTER TABLE table_name ENGINE=InnoDB;?What other tricks can be used in order to speed up conversion of a production database table from MyISAM to InnoDB?