How WordPress select database engine while installing website?

911 views Asked by At

Is this default database storage engine? I want to install my WordPress website with MYSQL "NDB CLUSTER" storage engine. I tried to install wordpress site, but it's installed with InnoDB. Please help me to resolve this.

I used this SET storage_engine=NDBCLUSTER; in mysql.

1

There are 1 answers

0
Ashish  Kumar Saxena On

There are two ways to migrate InnoDB tables with foreign keys to NDB.

    Dump the database and edit the script so each table specifies ENGINE=NDB before re-importing the script to a new database
    Drop the constraints, alter the tables to use the NDB engine, and recreate the constraints

Dumping the database and editing the script is a straightforward use of mysqldump and a text editor.

Converting InnoDB Tables to MySQL Cluster

it might helpful for you