Bookmark and Share   Optimising MySql
web hosting directory web hosting dedicated server colocation hosting web hosting services servers web hosting company web hosting article web host news web host news

web hosting
Cheap web hosting
Windows web hosting
Linux web hosting
Unrestricted hosting
Ecommerce web hosting
Virtual server VPS
Reseller hosting
by US State
by US City
Web Hosting coupons
VPS coupons
Articles

Cheap dedicated servers
Best dedicated servers
Windows dedicated servers
Linux dedicated servers
Unrestricted server
dedicated managed server
dedicated server unmetered
by US State
by US City
Dedicated server coupons
Articles

Cheap colocation hosting
Unrestricted Colocation
by US State
by US City
Coupons Promotion
Articles

Domain Registration
SSL Certificate
Website Statistics
Merchant account
Control panel
WebSite monitor

Intel Servers
AMD servers
SCSI Servers
Cheap Servers

Web hosting company
Dedicated Hosting
Colocation hosting
Web Hosting Services
Server manufacturer
Reviews

Top 10 Dedicated servers May 2010

Westmere Dedicated server the best deal

Using CMS to create Websites

Top 10 Dedicated Servers March 2010

Control Panel Benefits

Top 10 Dedicated servers January 2010

Shared Web Hosting How it works

Add swap file under linux

More Articles


CoolHandle Hosting 50% off on all Dedicated servers and VPS

Data Center Monitoring Leader launches Partnership Zumasys

Solar VPS Launches New Managed VPS Plans

GlassHouse Technologies Launches Cloud Insight Tool to Maximize Success of Cloud Computing Implementation at VMworld 2010 Booth #1136

Equinix Plans to Build $63 Million International Business Exchange Data Center in Hong Kong

Indian eCommerce Leader Adopts Red Hat Enterprise Virtualization

More News




Optimising MySql

Optimising MySql



Optimising mysql

There is never “best parameters”, the best parameters is those fits your needs, box hardware, mysql usage…
So, I’ll not give the best parameters but rather how to define these ones.
Make some tests, and you’ll quickly find your own parameters.

There a lot of available parameters but only few one are very important to tweak your mysql box.

The most important variables are:

  • - max_connections
  • - wait_timeout
  • - thread_cache_size
  • - table_cache
  • - key_buffer_size
  • - query_cache_size
  • - tmp_table_size

    How to display mySql variables:

    1) login on mysql
    2) from mysql type: show variables;

    From command line type: mysqladmin variables

    How to display Mysql Status and processes

    from Mysql : show status;
    from command line mysqladmin –i10 processlist extended-status

    OPTIMISING MYSQL

    To obtain the stat of your mysql server since it has been loaded from command line:
    type: mysqladmin processlist extended-status.

    1 - Table_cache and Key_buffer_size

    * If Opened_tables is big, then your table_cache variable is probably
    too small.
    table_cache 64
    Open_tables 64
    Opened_tables 544468

    This is the first serious problem. "The table_cache is the number of open
    tables for all threads. MySQL, being multi-threaded, may be running many
    queries on the table at one time, and each of these will open a table."
    Therefore, even though we only have a few tables, we will need many more
    open_tables.

    The Opened_tables value is high and shows the number of
    cache misses. Getting the table_cache size correct is one of the two best
    things you can do to improve performance.

    * If Key_reads is big, then your key_buffer_size variable is probably
    too small. The cache hit rate can be calculated with
    Key_reads/Key_read_requests.
    key_buffer_size 16M
    Key_read_requests 2973620399
    Key_reads 8490571
    (cache hit rate = 0.0028)

    “The key_buffer_size affects the size of the index buffers and the speed
    of index handling, particularly reading." The MySQL manual (and other sources) say that
    "Key_reads/Key_read_request ratio should normally be < 0.01." This is the
    other most important thing to get correct. Here the value seems to be correct (< 0.01)

    Also check key_write_requests and key_writes.
    The key_writes/key_writes_request should normally be < 1 (near 0.5 seems to be fine)


    2 - Wait_timeout, max_connexion, thread_cache

    A little explanation :
    Generaly you have a lot of mysql process that are sleeping because wait_timeout are not set low. So I make sure that the wait_timeout is set to a very low value: 15 seconds (for me) . That means MySQL would close any connection that was idle for more than 15 seconds.

    The problem is you also have to increment your max_connexion (mine is set to 300) to be sure there is not a lot of idle clients holding connections and blocking out new clients from connecting and getting real work done.
    The pbm is that the box has to create new threads (MySQL is a multi-threaded server) at a very high rate. That may sucks up a measurable amount of CPU time.

    So the solution is to use the Thread_cache (from mysql doc) :
    “How many threads we should keep in a cache for reuse. When a client disconnects, the client's threads are put in the cache if there aren't more than thread_cache_size threads from before. All new threads are first taken from the cache, and only when the cache is empty is a new thread created. This variable can be increased to improve performance if you have a lot of new connections. (Normally this doesn't give a notable performance improvement if you have a good thread implementation.) By examing the difference between the Connections and Threads_created you can see how efficient the current thread cache is for you.”


    * If Threads_created is big, you may want to increase the
    thread_cache_size variable. The cache hit rate can be calculated with
    Threads_created/Connections.
    thread_cache_size 0
    Threads_created 150022
    Connections 150023

    This is the second problem that should be fixed. A cache size of zero is the default for my-medium.cnf but the recommended size in my-large.cnf is 8.

    you may try this formula : table_cache = opened table / max_used_connection


    3 - tmp_table_size and Handler_read_rnd / Handler_read_rnd_next

    * If Created_tmp_disk_tables is big, you may want to increase the
    tmp_table_size variable to get the temporary tables memory-based instead
    of disk based.

    tmp_table_size 32M
    Created_tmp_disk_tables 3227
    Created_tmp_tables 159832
    Created_tmp_files 4444

    Created_tmp_disk_tables are the "number of implicit temporary tables on
    disk created while executing statements" and Created_tmp_tables are
    memory-based. Obviously it is bad if you have to go to disk instead of
    memory. About 2% of temp tables go to disk, which doesn't seem too bad
    but increasing the tmp_table_size probably couldn't hurt either.


    * If Handler_read_rnd is big, then you probably have a lot of queries
    that require MySQL to scan whole tables or you have joins that don't use
    keys properly.
    Handler_read_rnd 27712353
    Handler_read_rnd_next 283536234

    These values are high, that we could probably stand to improve
    the indexes and queries.

    4 - Memory Used by Mysql

    Used MySQL memory = key_buffer + max_connections * (join_buffer + record_buffer + sort_buffer + thread_stack + tmp_table_size)

    Notice the max_connexion and the multiplier.
    connexion increase = memory usage increase too.

    Notice key_buffer
    for a given memory :more you add mem to key buffer, less connexion is less is key buffer, more connexion is

    If you change one of these settings for a high value, you system may swap.
    If you system swap, try lot decrease these values

    5 - About table_cache

    Increasing the size of the table cache may really help you.
    But you must be careful not to make the value too large. All operating systems have a limit on the number "open file pointer" (sorry in french it is called pointer, maybe descriptors is the good translation) a single process may have.
    If MySQL tries to open a lot of files, the OS may refuse it and MySQL will generate error message in the error log.


    Maybe there is others tweaks to perform, but I know well only these ones. I did setup using these ones on differents mysql box, and generally it did help us to increase performance without have to change hardware (our boxes have 2GB ram)





  • SingleHop Dedicated Servers
    Related Articles

    How to stop mysql or start mysql
    How to stop mysql or start mysql The command depends on the linux distribution installed on...
    Written by: Mysql FAQ
    Mysql
    Optimising MySql
    Optimising mysql There is never “best parameters”, the best parameters is those fits your...
    Written by: Pascal
    Mysql


    Related special offers
    Dual Core Xeon 3040 Dedicated server for $99 per Mo.
    Great for Entry level hosting. 1GB RAM - 250GB SATA HD - 1 TB Bandwidth

    Xeon Quad Core Dedicated server for $184 per Mo.
    Xeon 3450 -2GB RAM - 250GB SATA HD - 2TB Bandwidth

    Dual Quad Core Xeon Nehalem Dedicated server for $274 per Mo.
    2x Xeon Quad core 5504 processors -6GB RAM - 250GB SATA HD - 2TB Bandwidth

    Most popular dedicated servers from ThePlanet
    If you're tired of slow server performance and limited bandwidth, consider Dedicated Hosting from The Planet.

    ThePlanet Promo Code Double Ram
    Get double ram on your dedicated server with the coupon code: pdram



    TOP 10 Best Dedicated Servers August 2010


    AskWebhosting.com recommends 3dstats.com real time web statistics for tracking your visitors.

    SingleHop Review
    ThePlanet Review
    1&1 USA Review
    iWeb Review

    iPage Review
    Hostgator Review
    JustHost Review
    FatCow Review
    CoolHandle Review
    midPhase Review
    HostMonster Review
    BlueHost Review

    Fast Serv Managed Hosting coupo $50 off ALL Managed servers

    HostedFX Dual Quad Server 90% Off 10TB Bandwidth

    Hostirian coupon code

    Core i7 860 Quad Core dedicated server $159

    egihosting dedicated bandwidth servers promo

    AMD Dedicated servers from $69

    Managed 32 GB RAM dedicated server for 199 Euros

    servebydesign dedicated servers deals

    Crewebs dedicated servers promo

    Versaweb Promo 10TB dedicated servers

    SingleHop coupons

    DedicatedNOW coupons

    theplanet Coupons

    More Deals




    Free Web Stats
    Web Statistics
    Web Templates
    Free Photos
    AllQuests


    2010 AskWebHosting.com    Contact-us    Advertise    Register    Web Hosting Questions    Privacy Policy