MySQL export causes swap alarm

Source: Internet
Author: User

A server recently reported swap <60% every early morning.

LocateCodeAnd export some database data to the file. The size is about 1 GB.

 
String exportcmd = "/usr/bin/MySQL -- safe-update = false-h" + dbhost + "-P" + dbport + "-U" + dbusername + "-P" + dbpassword + "-- default-character-set = utf8" + database + "-e \" "+ export_ SQL +" \ ">" + configuration. getiosfilepath ();

Memory usage increases and cannot be released for a period of time due to each export. The -- quick parameter is added.

If you have problems due to insufficient memory for large result sets, use the -- quick option. This forces MySQL to retrieve results from the server
Row at a time rather than retrieving the entire result set and buffering it in memory before displaying it. This is done by returning the result set
Using the mysql_use_result () c api function in the Client/Server library rather than mysql_store_result ().


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.