MySQL Performance Tuning |
|
Rating: 5/5 from 2 votes | Last Updated: Thu, Oct 13, 2011 at 8:43 AM
|
There are a couple of things that can be done to ensure that your MySQL database is running as fast as it can. Besides making sure that your server is in good shape and that it has the resources necessary for supplying data to your web site/server, you can fine tune it's performance a little by reviewing the following items. Customizing Antivirus Scanning RulesMySQL maintains the database data in a data folder It is possible that your antivirus software is scanning the data folders or the temp folders and slowing down the data transfer for the database. To make sure this isn't a problem you must first determine where your data and temp folders are located. MySQl often creates temporary tables to handle more complicated queries. These temp tables are normally created in the Windows temp folder by default. But to be sure you need to look through the "my.ini" file to determine where these folders are located. The "my.ini" file is usually located under the main installation file for MySQL. Typically "c:\MySQL5\". For older version of MySQL it could also be located in the "system" folder or on the root drive. This is also the order that MySQL looks for the "my.ini" file so try to locate the first "my.ini" file you can find in that order (Install Path first, System path next then the Root path). Open the "my.ini" file in Notepad or some other simple text editor. Now locate the "datadir=" value. This is the primary storage location path for the database files. Remember this path for later. Now locate the "tmpdir=" value. It may not exist. If it doesn't then your system is using one of the Windows temp folders. You can add it under the "datadir" value by adding the following line: tmpdir="C:/MySQL5/Data" You can add it anywhere, but it would make sense to add it to the same location as your database folders so that you need only specify a single directory when setting up the antivirus settings to bypass this folder. Now, using these 2 directories, edit your antivirus program to not include these folders in the normal real-time scan. This will cause your antivirus software to stop scanning these directories in real-time and should speed up the data transfer to your web site/server. Ensuring database default consistancyThe other item in the 'my.ini" file that is commonly configured improperly is the default temp table format. This is also found in the "my.ini" file that was mentioned above. Locate the "default-storage-engine=" value in the "my.ini" file. This should be set to: default-storage-engine=MYISAM It is common for it to be set to another value. This causes a slow temporary table creation because the format is different thatn the normal tabels that are created with our applications. Changing this value to be consistant shoudl have a significant impact on performance. |
Attachments
There are no attachments for this article.
|
Comments ![]() There are no comments for this article. Be the first to post a comment. |
Events and Room Reserve Scheduled Task Setup for Email Notifications
Viewed 1395 times since Tue, Nov 8, 2011
How do I add text to the landing page?
Viewed 726 times since Thu, Oct 6, 2011
Server Requirements
Viewed 826 times since Wed, Sep 28, 2011
How do I change the layout of a review?
Viewed 405 times since Thu, Oct 6, 2011
How do I generate emails for Room Reservation changes
Viewed 378 times since Thu, Oct 6, 2011
Frequently Asked Questions About Migrating Unmediated Rooms from Room Reserve to Dibs!
Viewed 837 times since Thu, Nov 8, 2012
Title/Author information not displaying in reviews
Viewed 527 times since Thu, Oct 6, 2011
Report of Organizations using our Room Reserve System
Viewed 492 times since Mon, Feb 20, 2012
How To Setup Widgets for Summer Reader 2013
Viewed 403 times since Tue, Apr 9, 2013
Session Timeout on staff-side
Viewed 1053 times since Wed, Sep 28, 2011
|

Add Comment