Using BitNami WordPress with Amazon RDS MariaDB

Installed BitNami WordPress which is already configured and updated in an instance EC2 Amazon. Launched a database RDS MariaDB, efetuei up the MySQL database that is already inserted in BitNami stack and then sent the backup.sql for instance RDS MaridaDB. I changed the database access settings in wp-config.php file by inserting the data from the database RDS MariaDB created. Everything is working fine, but I have a doubt about the performance of the bank I have not deleted the Mysql the BitNami stack. If I'm using InnoDB tables and not the standard MariaDB tables.

Answer

MariaDB uses XtraDB by default. But XtraDB tables are on-disk compatible with InnoDB. You can create a table with InnoDB, then later use it with XtraDB, then again use it with InnoDB — it will all work just fine.

The fact that you have create your tables in InnoDB will not affect the performance of your MariaDB instance.

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.