How to Improve MySQL Import and Export speed

Source: Internet
Author: User
Tags mysql import

The SQL statement exported by MySQL may be very slow during import. Using several parameters properly during export can greatly speed up the import.

-E uses the multiline INSERT syntax that includes several VALUES lists;
-Max_allowed_packet = maximum size of the cache for communications between the XXX client/server;
-Net_buffer_length = XXX TCP/IP and socket communication buffer size, create a line with the length up to net_buffer_length.
Note: max_allowed_packet and net_buffer_length cannot be greater than the set value of the target database. Otherwise, an error may occur.
 
 
First, determine the parameter value of the target database.
 
Mysql> show variables like 'max _ allowed_packet ';
Mysql> show variables like 'net _ buffer_length ';
Write the mysqldump Command Based on the parameter value, for example:
 
# Mysqldump-uroot-p dbname-e -- max_allowed_packet = 16777216 -- net_buffer_length = 16384> db_name. SQL
OK, now the speed is very fast. Note that the max_allowed_packet and net_buffer_length parameter values of the Import and Export end are set to a greater value.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.