Jul 12, 2011

Jul 6, 2009

Analysing MySQL logs

From time to time you may get shouts from your server administrator about the load your queries put on your shared hosting account.
Several people I know have been "kicked out" without notice from shared hosting. Not a very nice feeling.
But then you move to a dedicated server, and suddenly you feel like kicking yourself out, since your server starts complaining and stops serving the users...

Time to go over your queries, add indexes and make other necessary changes to lower (or spread) the load.

But WHERE DO WE START? There are a billion different query types in our application. How do we know which one is the current bottle-neck?

MySQL logs to the rescue.

There are two main MySQL logs you should use:
1. mysqld.log - a log of ALL the queries
2. mysqld-slow.log - a log of queries that took more then x seconds to run.

These logs tend to fill up really quickly..

Your hava-amina (first thought) might be to look in the slow-queries log. But in it you will find many queries that ran slowly because the server was already loaded. a problem...

To the RESCUE: MyProfi. A MySQL log analyser.

MyProfi is a command line tool that parses mysql query log and outputs statistics of most frequently used queries, sorting them by number of times they appear in a log file. The similar queries are groupped together. Thus, select id from user where login="admin" and select id from user where login='root' become select id from user where login={} - the variable parts of queries are replaced with {} markers, this make statistics analysis as easy as revewing the top of most frequently occured queries' patterns.

You can get MyProfi at: http://myprofi.sourceforge.net/

Example of its output:

Queries by type:
================
select 346 887 [84.11%]
set 29 643 [ 7.19%]
insert 23 748 [ 5.76%]
update 11 916 [ 2.89%]
execute 155 [ 0.04%]


Queries by pattern:
===================
1. 118 471 [28.73%] - select*from visitedurl where siteid={}and pagetypeid={}
2. 27 713 [ 6.72%] - set names utf8
3. 20 476 [ 4.97%] - select mimage,timage from images where id={}limit{}
4. 20 475 [ 4.96%] - select*from users where id={}

See the 28.73%? This can tell you exactly where to look and what to change. Notice that these are not actual queries, but QUERY-TYPES instead. the {} in id={} replaces various different ids that were entered.
Also notice the SET NAMES UTF8 query. This can be set in my.ini and never again be needed. (Lowering 6.72% of your query load)

Jun 30, 2009

Coding - worst practices

How NOT to code:

1. Don't mix Logic,Data and Presentation in the same file.
Example:
Notice the DB connection, the PHP codes, and the HTML all tangled...

Jun 26, 2009

Turn ON error reporting for DEBUGing

PHP usually hides many of the compiler warnings and errors.
Use the following to display errors while debuging your application:


error_reporting(E_ALL);

OR:

ini_set('error_reporting', E_ALL);


More advanced users may want to display only some of the errors.
Such as:

error_reporting(E_ALL ^ E_NOTICE);

To avoid showing notices for uninitiallized variables.

Some more options to experiment with:
E_ERROR
E_WARNING
E_PARSE
E_NOTICE
E_CORE_ERROR
E_CORE_WARNING
E_COMPILE_ERROR
E_COMPILE_WARNING
E_USER_ERROR
E_USER_WARNING
E_USER_NOTICE
E_ALL
E_STRICT
E_RECOVERABLE_ERROR
E_DEPRECATED
E_USER_DEPRECATED

Content-Types

When serving a document dynamically, you may need to tell the browser what kind of file it is.
In PHP (For JPG):

header("Content-type: image/jpeg;");


These are called mime-types.

A list of possible types:
Type Extension
application/envoy evy
application/fractals fif
application/futuresplash spl
application/hta hta
application/internet-property-stream acx
application/mac-binhex40 hqx
application/msword doc
application/msword dot
application/octet-stream *
application/octet-stream bin
application/octet-stream class
application/octet-stream dms
application/octet-stream exe
application/octet-stream lha
application/octet-stream lzh
application/oda oda
application/olescript axs
application/pdf pdf
application/pics-rules prf
application/pkcs10 p10
application/pkix-crl crl
application/postscript ai
application/postscript eps
application/postscript ps
application/rtf rtf
application/set-payment-initiation setpay
application/set-registration-initiation setreg
application/vnd.ms-excel xla
application/vnd.ms-excel xlc
application/vnd.ms-excel xlm
application/vnd.ms-excel xls
application/vnd.ms-excel xlt
application/vnd.ms-excel xlw
application/vnd.ms-outlook msg
application/vnd.ms-pkicertstore sst
application/vnd.ms-pkiseccat cat
application/vnd.ms-pkistl stl
application/vnd.ms-powerpoint pot
application/vnd.ms-powerpoint pps
application/vnd.ms-powerpoint ppt
application/vnd.ms-project mpp
application/vnd.ms-works wcm
application/vnd.ms-works wdb
application/vnd.ms-works wks
application/vnd.ms-works wps
application/winhlp hlp
application/x-bcpio bcpio
application/x-cdf cdf
application/x-compress z
application/x-compressed tgz
application/x-cpio cpio
application/x-csh csh
application/x-director dcr
application/x-director dir
application/x-director dxr
application/x-dvi dvi
application/x-gtar gtar
application/x-gzip gz
application/x-hdf hdf
application/x-internet-signup ins
application/x-internet-signup isp
application/x-iphone iii
application/x-javascript js
application/x-latex latex
application/x-msaccess mdb
application/x-mscardfile crd
application/x-msclip clp
application/x-msdownload dll
application/x-msmediaview m13
application/x-msmediaview m14
application/x-msmediaview mvb
application/x-msmetafile wmf
application/x-msmoney mny
application/x-mspublisher pub
application/x-msschedule scd
application/x-msterminal trm
application/x-mswrite wri
application/x-netcdf cdf
application/x-netcdf nc
application/x-perfmon pma
application/x-perfmon pmc
application/x-perfmon pml
application/x-perfmon pmr
application/x-perfmon pmw
application/x-pkcs12 p12
application/x-pkcs12 pfx
application/x-pkcs7-certificates p7b
application/x-pkcs7-certificates spc
application/x-pkcs7-certreqresp p7r
application/x-pkcs7-mime p7c
application/x-pkcs7-mime p7m
application/x-pkcs7-signature p7s
application/x-sh sh
application/x-shar shar
application/x-shockwave-flash swf
application/x-stuffit sit
application/x-sv4cpio sv4cpio
application/x-sv4crc sv4crc
application/x-tar tar
application/x-tcl tcl
application/x-tex tex
application/x-texinfo texi
application/x-texinfo texinfo
application/x-troff roff
application/x-troff t
application/x-troff tr
application/x-troff-man man
application/x-troff-me me
application/x-troff-ms ms
application/x-ustar ustar
application/x-wais-source src
application/x-x509-ca-cert cer
application/x-x509-ca-cert crt
application/x-x509-ca-cert der
application/ynd.ms-pkipko pko
application/zip zip
audio/basic au
audio/basic snd
audio/mid mid
audio/mid rmi
audio/mpeg mp3
audio/x-aiff aif
audio/x-aiff aifc
audio/x-aiff aiff
audio/x-mpegurl m3u
audio/x-pn-realaudio ra
audio/x-pn-realaudio ram
audio/x-wav wav
image/bmp bmp
image/cis-cod cod
image/gif gif
image/ief ief
image/jpeg jpe
image/jpeg jpeg
image/jpeg jpg
image/pipeg jfif
image/svg+xml svg
image/tiff tif
image/tiff tiff
image/x-cmu-raster ras
image/x-cmx cmx
image/x-icon ico
image/x-portable-anymap pnm
image/x-portable-bitmap pbm
image/x-portable-graymap pgm
image/x-portable-pixmap ppm
image/x-rgb rgb
image/x-xbitmap xbm
image/x-xpixmap xpm
image/x-xwindowdump xwd
message/rfc822 mht
message/rfc822 mhtml
message/rfc822 nws
text/css css
text/h323 323
text/html htm
text/html html
text/html stm
text/iuls uls
text/plain bas
text/plain c
text/plain h
text/plain txt
text/richtext rtx
text/scriptlet sct
text/tab-separated-values tsv
text/webviewhtml htt
text/x-component htc
text/x-setext etx
text/x-vcard vcf
video/mpeg mp2
video/mpeg mpa
video/mpeg mpe
video/mpeg mpeg
video/mpeg mpg
video/mpeg mpv2
video/quicktime mov
video/quicktime qt
video/x-la-asf lsf
video/x-la-asf lsx
video/x-ms-asf asf
video/x-ms-asf asr
video/x-ms-asf asx
video/x-msvideo avi
video/x-sgi-movie movie
x-world/x-vrml flr
x-world/x-vrml vrml
x-world/x-vrml wrl
x-world/x-vrml wrz
x-world/x-vrml xaf
x-world/x-vrml xof

Enable/Disable display of list of files in directory

When going to http://yoursite.com/afolder/ you may or may not wish the user to see the list of files.

Heres how to do it via the .htaccess file:

To enable directory listing:

Options +Indexes


To disable directory listing:

Options +Indexes




You can specify how to show the files.
To display icons, file sizes, etc, FANCY style:

IndexOptions +FancyIndexing


You can also hide certain files:

IndexIgnore *.gif *.jpg *.php

Jun 22, 2009

Moving a site to a different domain

Sometimes you need to move a site from one domain to another.
Happens mostly when beta testing on a temporary subdomain, and one day, you wanna move, but what will happen to all the incoming links?
There is one method for a TEMPORARY domain change [302] (for maintenance or something similar) , and there is one for a PERMANENT domain change [301].

Two good methods, via .htaccess via PHP or via HTML:

The htaccess redirection method:

redirect 301 / http://newDomain.com


For a PERMANENT redirect, or

redirect 302 / http://newDomain.com

For a TEMPORARY redirect.




The PHP redirection methods:

header('HTTP/1.1 301 Moved Permanently', true);
header('Location: http://newDomain.com/');

For a PERMANENT redirect, or

header('Location: http://newDomain.com/');

For a TEMPORARY redirect.



The HTML redirection method:

<meta http-equiv=refresh content="0; url=http://newDomain.com" />

NOTE: The 0 (Zero) can be changed to a number of seconds you'd like the browser to wait before redirecting. Usually used to display a "We have moved" notice.
NOTE2: When using 0 (zero) as the timeout param, Google/Yahoo will treat it as a 301 PERMANENT move, while when using a higher timeout duration they will treat it as a 301 TEMPORARY move.