I am developing a browser app that connects to several MySQL-databases through php-sites. These databases are set on a single AWS RDS instance. When I set up these databases I was not very well informed about the different db engines. After reading about the different types I decided to use InnoDB for low IOPS demands and MyISAM for high IOPS demands as I read it was faster in certain tasks.
Amazon Web Services tells me that:
DB Instance test-1 contains MyISAM tables that have not been migrated to InnoDB. These tables can impact your ability to perform point-in-time restores. Consider converting these tables to InnoDB. Please refer to http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.BackingUpAndRestoringAmazonRDSInstances.html#Overview.BackupDeviceRestrictions
Should I recreate the MyISAM db using InnoDB?