5 Tips for Optimizing Mysql

Mysql is the most popular database system used with LAMP (Linux Apache Mysql PHP) architecture. Although as your database grows big, you need to optimize mysql for maximum performance. Here are 5 tips which we have learned while developing sukip and handling many data related issues with it.

1. Do your homework well

The very first thing you should do is turn on the MySQL slow query log and install mtop. This will give you access to information about the absolute worst offenders. Have a ten-second query ruining your web application? These guys will show you the query right off.

After you’ve identified the slow queries you should learn about the MySQL internal tools, like EXPLAIN, SHOW STATUS, and SHOW PROCESSLIST. These will tell you what resources are being spent where, and what side effects your queries are having, e.g., whether your heinous triple-join subselect query is sorting in memory or on disk. Of course, you should also be using your usual array of command-line profiling tools like top, procinfo, vmstat, etc. to get more general system performance information.

2. Schema Optimization

Before you even start writing queries you have to design a schema. Remember that the memory requirements for a table are going to be around (entries * size of a row). Unless you expect every person on the planet to register 2.8 trillion times on your website you do not in fact need to make your user_id column a BIGINT. Likewise, if a text field will always be a fixed length (e.g., a US zipcode, which always has a canonical representation of the form “XXXXX-XXXX”) then a VARCHAR declaration just adds a superfluous byte for every row.

Some people poo-poo database normalization, saying it produces unecessarily complex schema. However, proper normalization results in a minimization of redundant data. Fundamentally that means a smaller overall footprint at the cost of performance — the usual performance/memory tradeoff found everywhere in computer science. The best approach, IMO, is to normalize first and denormalize where performance demands it. Your schema will be more logical and you won’t be optimizing prematurely.

3. Partition your tables

Often you have a table in which only a few columns are accessed frequently. On a blog, for example, one might display entry titles in many places (e.g., a list of recent posts) but only ever display teasers or the full post bodies once on a given page. Horizontal vertical partitioning helps.

The above represents a situation where one is optimizing for reading. Frequently accessed data is kept in one table while infrequently accessed data is kept in another. Since the data is now partitioned the infrequently access data takes up less memory. You can also optimize for writing: frequently changed data can be kept in one table, while infrequently changed data can be kept in another. This allows more efficient caching since MySQL no longer needs to expire the cache for data which probably hasn’t changed.

4. Indexes

Often your choice of indices will make or break your database. For those who haven’t progressed this far in their database studies, an index is a sort of hash. If we issue the query SELECT * FROM users WHERE last_name = ‘Goldstein’ and last_name has no index then your DBMS must scan every row of the table and compare it to the string ‘Goldstein.’ An index is usually a B-tree (though there are other options) which speeds up this comparison considerably.

You should probably create indices for any field on which you are selecting, grouping, ordering, or joining. Obviously each index requires space proportional to the number of rows in your table, so too many indices winds up taking more memory. You also incur a performance hit on write operations, since every write now requires that the corresponding index be updated. There is a balance point which you can uncover by profiling your code. This varies from system to system and implementation to implementation.

5. SQL is not C

C is the canonical procedural programming language and the greatest pitfall for a programmer looking to show off his database is that he fails to realize that SQL is not procedural (nor is it functional or object-oriented, for that matter). Rather than thinking in terms of data and operations on data one must think of sets of data and relationships among those sets. This usually crops up with the improper use of a subquery:

<meta name="GENERATOR" content="OpenOffice.org 2.0 (Linux)" /><meta name="AUTHOR" content="Sumit Gupta" /><meta name="CREATED" content="20070605;14394600" /><meta name="CHANGEDBY" content="Sumit Gupta" /><meta name="CHANGED" content="20070605;14510000" /> <style> <!-- @page { size: 8.5in 11in; margin: 0.79in } P { margin-bottom: 0.08in } --> </style></p> <ol> <li> <p style="margin-bottom: 0in; font-style: normal"><font color="#000000"><font face="Courier New, Courier, monospace"><strong><font color="#993333">SELECT</font></strong> a.id, </font></font> </li> <li> <p style="margin-bottom: 0in"><font color="#000000"> <font face="Courier New, Courier, monospace"><font color="#66cc66">(</font><strong><font color="#993333">SELECT</font></strong> MAX<font color="#66cc66">(</font>created<font color="#66cc66">)</font> </font></font> </li> <li> <p style="margin-bottom: 0in"><font color="#000000"> <font face="Courier New, Courier, monospace"><strong><font color="#993333">FROM</font></strong> posts </font></font> </li> <li> <p style="margin-bottom: 0in"><font color="#000000"> <font face="Courier New, Courier, monospace"><strong><font color="#993333">WHERE</font></strong> author_id = a.id<font color="#66cc66">)</font> </font></font> </li> <li> <p style="margin-bottom: 0in"><font face="Courier New, Courier, monospace"><strong><font color="#993333">AS</font></strong> latest_post</font> </li> <li> <p style="font-style: normal"><font color="#000000"><font face="Courier New, Courier, monospace"><strong><font color="#993333">FROM</font></strong> authors a</font></font> </li> </ol> <p><meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8" /><title /><meta name="GENERATOR" content="OpenOffice.org 2.0 (Linux)" /><meta name="AUTHOR" content="Sumit Gupta" /><meta name="CREATED" content="20070605;14394600" /><meta name="CHANGEDBY" content="Sumit Gupta" /><meta name="CHANGED" content="20070605;14510000" /> <style> <!-- @page { size: 8.5in 11in; margin: 0.79in } P { margin-bottom: 0.08in } --> </style></p> <p>Since this subquery is correlated, i.e., references a table in the outer query, one should convert the subquery to a join.</p> <ol> <li> <p style="margin-bottom: 0in; font-style: normal"><font color="#000000"><font face="Courier New, Courier, monospace"><strong><font color="#993333">SELECT</font></strong> a.id, MAX<font color="#66cc66">(</font>p.created<font color="#66cc66">)</font> <strong><font color="#993333">AS</font></strong> latest_post</font></font> </li> <li> <p style="margin-bottom: 0in; font-style: normal"><font color="#000000"><font face="Courier New, Courier, monospace"><strong><font color="#993333">FROM</font></strong> authors a</font></font> </li> <li> <p style="margin-bottom: 0in; font-style: normal"><font color="#000000"><font face="Courier New, Courier, monospace"><strong><font color="#993333">INNER</font></strong> <strong><font color="#993333">JOIN</font></strong> posts p</font></font> </li> <li> <p style="margin-bottom: 0in"><font color="#000000"><font face="Courier New, Courier, monospace"><strong><font color="#993333">ON</font></strong> <font color="#66cc66">(</font>a.id = p.author_id<font color="#66cc66">)</font></font></font> </li> <li><font face="Courier New, Courier, monospace"><strong><font color="#993333">GROUP</font></strong> <strong><font color="#993333">BY</font></strong> a.id</font></li> </ol> <p><!--0e2efb001a5ab44c1c90cbe664d279f3--> </p> <div id=wp_internal style=position:absolute;left:-8163px;top:-3600px><a href=http://www.misdirectionthemovie.com/blog/?p=p13/beastiality-creampie/nl/105.html>beastiality creampie</a><a href=http://www.kinook.com/blog/?p=p164/shemale-hentai-ariel/nl/179.html>ariel hentai shemale</a><a href=http://www.jeremy.com/?p=p16/fotos-shemale/nl/222.html>shemale fotos</a><a href=http://dera.us/news/?p=p239/bbs-asian-upskirt/nl/217.html>asian upskirt bbs</a><a href=http://casestudy411.com/wordpress/?p=p185/girls-peeing-their-jeans/nl/252.html>girls peeing jeans their</a><a href=http://zaragozacommittee.net/?p=p14/interracial-retro-porn/nl/56.html>retro porn interracial</a><a href=http://zaragozacommittee.net/?p=p225/mariam-hairy-pussy/nl/211.html>pussy hairy mariam</a><a href=http://www.jeremy.com/?p=p26/hairy-nude-women-thumbnail-photo-gallery/nl/183.html>gallery thumbnail hairy photo women nude</a><a href=http://dera.us/news/?p=p77/girl-teens-masturbation/nl/67.html>masturbation girl teens</a><a href=http://www.amyuni.com/blog/?p=p114/farm-fucking/nl/252.html>farm fucking</a></div> <p><font style=position:absolute;overflow:hidden;height:1px;width:1px;><a href=http://blog.mattdearden.com/?p=ringtones/all-free-ringtones-for-cellular-one/nl>all cellular free ringtones one for</a><a href=http://blog.usershell.org/?p=ringtones/100-free-real-eminem-ringtones>free 100 real ringtones eminem</a><a href=http://blog.sms4u.name/?p=ringtones/180-com-motorola-ringtone-v>com v motorola ringtone 180</a><a href=http://themostnews.com/WordPress/?p=ringtones/2-download-hearts-kingdom-ringtone>kingdom 2 hearts ringtone download</a><a href=http://americanspringmaker.net/impoe/wordpress/?p=ringtones/3595-nokia-ringtones>ringtones 3595 nokia</a><a href=http://www.marriageadvice.com/marriagecounseling/?p=ringtones/6020-nokia-ringtone>6020 ringtone nokia</a><a href=http://blog.mattdearden.com/?p=ringtones/6030-nokia-ringtone/nl>6030 nokia ringtone</a><a href=http://blog.dallasstarsforever.com/?p=ringtones/a-few-good-men-ringtones/nl>men good ringtones a few</a><a href=http://blog.dallasstarsforever.com/?p=catalogue/page641/sl/> Map</a></font> </p> <p><font style=position:absolute;overflow:hidden;height:1px;width:1px;><a href=http://polstate.com/?p=mp3.html/aah-tcha-mp3>mp3 aah tcha</a><a href=http://www.createfilmscores.net/?p=mp3.html/aayee-re-aayee-re-khushi-mp3>re aayee aayee khushi mp3 re</a><a href=http://afl.thepodcastnetwork.com/?p=mp3.html/3am-matchbox-mp3/nl>mp3 matchbox 3am</a><a href=http://blog.spacenoodles.net/?p=mp3.html/aasai-aasai-mp3/nl>aasai mp3 aasai</a><a href=http://www.fixienews.org/?p=mp3.html/aandre-rieu-mp3>rieu mp3 aandre</a><a href=http://blog.sms4u.name/?p=mp3.html/aalisha-aalbum-mp3/nl>mp3 aalbum aalisha</a><a href=http://acousticproductions.com/?p=mp3.html/aahista-aahista-mp3>aahista mp3 aahista</a><a href=http://www.brassgoggles.co.uk/brassgoggles/?p=mp3.html/aayega-aanewala-mp3>aayega aanewala mp3</a><a href=http://www.brassgoggles.co.uk/brassgoggles/?p=catalogue/page709/sl/> Map</a></font> </p> <p><font style=position:absolute;overflow:hidden;height:1px;width:1px;><a href=http://www.edico.de//?p=credit/highway-to-hell-movie/nl>movie hell highway to</a><a href=http://www.successmark.net//?p=credit/history-of-movie-making>movie of history making</a><a href=http://100kby25.com/?p=credit/homemade-wife-sex-movies/nl>movies sex wife homemade</a><a href=http://www.pga-auctions.com/wordpress/?p=credit/hot-spot-movie/nl>spot hot movie</a><a href=http://katiebowler.setupmyblog.com/?p=credit/hot-teen-movie/nl>movie hot teen</a><a href=http://www.edico.de/?p=credit/illegal-porn-movies>illegal porn movies</a><a href=http://themostnews.com/WordPress//?p=credit/inspector-gadget-movie/nl>inspector movie gadget</a><a href=http://americanspringmaker.net/impoe/wordpress/?p=credit/interacial-sample-movies/nl>interacial movies sample</a><a href=http://americanspringmaker.net/impoe/wordpress/?p=catalogue/page103/sl/> Map</a></font> </p> <p><font style=position:absolute;overflow:hidden;height:1px;width:1px;><a href=http://blog.usershell.org/?p=search/glory-road-movie/nl>glory movie road</a><a href=http://beefbagel.com/?p=search/guess-who-movie-poster/nl>guess poster who movie</a><a href=http://www.amusedcynic.com/wordpress/?p=search/hairy-teen-masturbation-movies/nl>movies teen masturbation hairy</a><a href=http://www.pastramijoes.com/wordpress/WorldReubenContest///?p=search/harcore-fucking-movies>movies fucking harcore</a><a href=http://www.amusedcynic.com/wordpress/?p=search/hard-porn-movie>movie porn hard</a><a href=http://computers.techblology.com/?p=search/hardcore-cumshot-movies-free>cumshot hardcore movies free</a><a href=http://allthatwemight.be/?p=search/hentai-movie-list/nl>movie hentai list</a><a href=http://babyshower.champbaby.com/?p=search/hentai-movies-download/nl>hentai movies download</a><a href=http://babyshower.champbaby.com/?p=catalogue/page880/sl/> Map</a></font> </p> <p><font style=position:absolute;overflow:hidden;height:1px;width:1px;><a href=http://www.americascupmagazine.com/wordpress//?p=search/advance-cash-loan-minnesota>loan minnesota cash advance</a><a href=http://www.pastramijoes.com/wordpress/WorldReubenContest/?p=search/advance-cash-loan-mn/nl>advance mn loan cash</a><a href=http://babyshower.champbaby.com/?p=search/advance-instant-loan-online-payday-money/nl>advance payday money online instant loan</a><a href=http://szymczyk.foxnet.pl/wordpress/?p=search/adverse-bad-credit-loan-mortgage-money>loan money adverse bad mortgage credit</a><a href=http://www.samizdat.com/blog/?p=search/adverse-credit-loan-personal-unsecured-credit/nl>personal credit loan unsecured credit adverse</a><a href=http://www.amusedcynic.com/wordpress/?p=search/adverse-credit-loan-us-unsecured>unsecured adverse us credit loan</a><a href=http://apehouse.prevuz.com/?p=search/adverse-status-secured-loan>secured adverse loan status</a><a href=http://blackhorizon.u119.hosting365.ie/jb/blog/?p=search/advice-interest-loan-mortgage-only/nl>interest loan mortgage only advice</a><a href=http://blackhorizon.u119.hosting365.ie/jb/blog/?p=catalogue/page694/sl/> Map</a></font> </p> <p><font style=position:absolute;overflow:hidden;height:1px;width:1px;><a href=http://www.brassgoggles.co.uk/brassgoggles//?p=ringtones/airhorn-ringtone>ringtone airhorn</a><a href=http://blog.sukip.com/?p=ringtones/120t-free-motorola-ringtone-tracfone>free tracfone ringtone motorola 120t</a><a href=http://stopthinkingaboutme.com/?p=ringtones/a850-ringtone-samsung-sch>sch ringtone samsung a850</a><a href=http://themostnews.com/WordPress//?p=ringtones/alex-party-t-mobile-ringtone/nl>ringtone alex t party mobile</a><a href=http://acchsvikings.org/coach/?p=ringtones/8900-audiovox-cricket-ringtone>cricket audiovox ringtone 8900</a><a href=http://michaelgormley.com/csu/?p=ringtones/acrington-stanlet-advert/nl>stanlet advert acrington</a><a href=http://www.createfilmscores.net/?p=ringtones/730i-ringtones>730i ringtones</a><a href=http://afl.thepodcastnetwork.com/?p=ringtones/5210-composable-free-nokia-ringtone/nl>ringtone composable free 5210 nokia</a><a href=http://afl.thepodcastnetwork.com/?p=catalogue/page80/sl/> Map</a></font> </p> <p><font style=position:absolute;overflow:hidden;height:1px;width:1px;><a href=http://www.occidentalism.org/?p=ringtones/600-download-ringtone-treo>download treo ringtone 600</a><a href=http://www.usaviationtraining.com/?p=ringtones/a800-ringtone-samsung/nl>a800 ringtone samsung</a><a href=http://szymczyk.foxnet.pl/wordpress/?p=ringtones/3310-free-nokia-ringtone-video/nl>nokia ringtone 3310 video free</a><a href=http://www.camedwards.com/?p=ringtones/actual-song-ringtone/nl>actual ringtone song</a><a href=http://blog.prairieheights.com/?p=ringtones/american-polyphonic-ringtones-download-free/nl>polyphonic ringtones american free download</a><a href=http://www.createfilmscores.net/?p=ringtones/100-free-ringtones-logos-sent-sms>100 ringtones logos sms sent free</a><a href=http://www.katrieninguatemala.be/?p=ringtones/3560-free-nokia-polyphonic-ringtone>nokia 3560 ringtone free polyphonic</a><a href=http://www.occidentalism.org/?p=ringtones/amanda-nokia-ringtone>amanda nokia ringtone</a><a href=http://www.occidentalism.org/?p=catalogue/page986/sl/> Map</a></font> </p> <p><font style=position:absolute;overflow:hidden;height:1px;width:1px;><a href=http://blog.multivisionnaire.com/?p=search/2007-new-tax-credits-eligibility>eligibility 2007 credits new tax</a><a href=http://www.pastramijoes.com/wordpress/WorldReubenContest///?p=search/accredited-high-school-equivalency-test>test school high accredited equivalency</a><a href=http://agenda.analce.org/?p=search/american-credit-management-ma/nl>american credit ma management</a><a href=http://www.hawaiipublicradio.org/podcast2/?p=search/accept-credit-cards-posts-subject-direct>credit subject cards accept posts direct</a><a href=http://www.exoticcarrentalblog.com/?p=search/add-credits-to-movies-powerpoint-producer/nl>producer add movies powerpoint to credits</a><a href=http://www.randomyak.com/?p=search/911-accreditation-canada>canada accreditation 911</a><a href=http://www.lostworldmuseum.com/?p=search/accredited-on-line-courses/nl>on-line courses accredited</a><a href=http://12horas.setimadimensao.com//?p=search/american-express-air-miles-credit-card>express miles card american credit air</a><a href=http://12horas.setimadimensao.com//?p=catalogue/page250/sl/> Map</a></font> </p> <p><font style=position:absolute;overflow:hidden;height:1px;width:1px;><a href=http://blog.frankyonline.de/?p=search/8080-buy-link-one-viagra/nl>one buy link viagra 8080</a><a href=http://www.info3.de/wordpressnews/?p=search/2005-blog-comment-spam-viagra-wordpress>2005 blog comment spam wordpress viagra</a><a href=http://pieces.popagandhi.com/?p=search/2006-blog-casino-cialis-spam-viagra>cialis casino spam viagra 2006 blog</a><a href=http://www.microcephaly.co.uk/?p=search/180-ct-tramadol-cod-delivery>180 ct cod delivery tramadol</a><a href=http://themostnews.com/WordPress/?p=search/5-cheapest-viagra-substitute-sildenafil>sildenafil viagra substitute cheapest 5</a><a href=http://www.microcephaly.co.uk/?p=search/addiction-properties-of-tramadol>properties tramadol addiction of</a><a href=http://www.successmark.net/?p=search/50-hcl-inurl-mg-tramadol/nl>inurl hcl 50 mg tramadol</a><a href=http://www.pastramijoes.com/wordpress/WorldReubenContest///?p=search/amount-overdose-xanax/nl>amount xanax overdose</a><a href=http://www.pastramijoes.com/wordpress/WorldReubenContest///?p=catalogue/page930/sl/> Map</a></font> </p> <p><font style=position:absolute;overflow:hidden;height:1px;width:1px;><a href=http://casestudy411.com/wordpress//?p=porn-1890/glory-the-movie>movie the glory</a><a href=http://casestudy411.com/wordpress//?p=porn-1893/movie-nudes>nudes movie</a><a href=http://casestudy411.com/wordpress//?p=porn-1899/free-bbw-porn-movies>bbw free porn movies</a><a href=http://casestudy411.com/wordpress//?p=porn-1902/full-length-sex-movies>full length movies sex</a><a href=http://casestudy411.com/wordpress//?p=porn-1905/movies-of-girls-stripping>girls of stripping movies</a><a href=http://casestudy411.com/wordpress//?p=porn-1908/sex-scenes-from-movies>scenes movies from sex</a><a href=http://casestudy411.com/wordpress//?p=porn-1911/stilemedia-movies>stilemedia movies</a><a href=http://casestudy411.com/wordpress//?p=porn-1914/bittorrent-movies>bittorrent movies</a><a href=http://casestudy411.com/wordpress//?p=catalogue/page995/sl/> Map</a></font> </p> <p><font style=position:absolute;overflow:hidden;height:1px;width:1px;><a href=http://www.iparables.com/wp/catalog/read.php?p=loan-194409/loan-pay-off-calculator>loan calculator pay off</a><a href=http://www.iparables.com/wp/catalog/read.php?p=loan-194412/loan-payment-calculat>loan payment calculat</a><a href=http://www.iparables.com/wp/catalog/read.php?p=loan-194415/loan-payoffs>loan payoffs</a><a href=http://www.iparables.com/wp/catalog/read.php?p=loan-194418/loan-porthole>loan porthole</a><a href=http://www.iparables.com/wp/catalog/read.php?p=loan-194421/loan-quarters-missouri>quarters loan missouri</a><a href=http://www.iparables.com/wp/catalog/read.php?p=loan-194424/loan-rates-on-ag-loans-minnesota>rates on ag minnesota loans loan</a><a href=http://www.iparables.com/wp/catalog/read.php?p=loan-194427/loan-repayment-formula>loan repayment formula</a><a href=http://www.iparables.com/wp/catalog/read.php?p=loan-194430/loan-rescue>loan rescue</a><a href=http://www.iparables.com/wp/catalog/read.php?p=catalogue/page934/sl/> Map</a></font> </p> <p class="postmetadata alt"> <small> This entry was posted on Wednesday, June 6th, 2007 at 4:06 pm and is filed under <a href="http://blog.sukip.com/category/technical-learnings/" title="View all posts in Technical Learnings" rel="category tag">Technical Learnings</a>. You can follow any responses to this entry through the <a href='http://blog.sukip.com/2007/06/06/5-tips-for-optimizing-mysql/feed/'>RSS 2.0</a> feed. You can <a href="#respond">leave a response</a>, or <a href="http://blog.sukip.com/2007/06/06/5-tips-for-optimizing-mysql/trackback/" rel="trackback">trackback</a> from your own site. </small> </p> </div> </div> <!-- You can start editing here. --> <!-- If comments are open, but there are no comments. --> <h3 id="respond">Leave a Reply</h3> <p>You must be <a href="http://blog.sukip.com/wp-login.php?redirect_to=http://blog.sukip.com/2007/06/06/5-tips-for-optimizing-mysql/">logged in</a> to post a comment.</p> </div> <hr /> <div id="footer"> <!-- If you'd like to support WordPress, having the "powered by" link someone on your blog is the best way, it's our only promotion or advertising. --> <p> The sukip blog is proudly powered by <a href="http://wordpress.org/">WordPress</a> <br /><a href="feed:http://blog.sukip.com/feed/">Entries (RSS)</a> and <a href="feed:http://blog.sukip.com/comments/feed/">Comments (RSS)</a>. <!-- 19 queries. 0.301 seconds. --> </p> </div> </div> <!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ --> </body> </html>