I am new to MySQL and I know very little about it.
The problem I am facing is as mentioned below:
Previously I had data which had MyISAM as its MySQL engine and it used to take around 15 minutes to get imported on any machine. However, when I change the engine to InnoDB it’s taking almost 90 minutes to get imported on any machine. Kindly suggest me for the same.
Innodb tables are faster for concurrent inserts. See Innodb Performance Optimization Basics
For best performance, you need to tune
INNODBengine inmy.cnffile.Assuming, if you have
4GB RAMthen try configuringmy.cnffile as:Then restart the MySQL server.