mysql导入慢解决方法
Posted 学习笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql导入慢解决方法相关的知识,希望对你有一定的参考价值。
[mysqldump]
max_allowed_packet = 512M
[mysqld]
interactive_timeout = 120
innodb_change_buffering=all
innodb_change_buffer_max_size=25
# innodb_buffer_pool_instances=1 Change at your own discretion
innodb_buffer_pool_size=3072M
innodb_log_file_size=384M
innodb_log_buffer_size=128M
innodb_flush_log_at_trx_commit=0
skip-innodb_doublewrite
mysql -uroot
SET autocommit=0;
SET unique_checks=0;
SET foreign_key_checks=0;
source e:\export.sql
COMMIT;
SET unique_checks=1;
SET foreign_key_checks=1;
以上是关于mysql导入慢解决方法的主要内容,如果未能解决你的问题,请参考以下文章
mysql导入导出sql文件,source导入速度慢的解决办法