Re: URGENT: MySQL don't get enough CPU
Posted by:
Rick James
Date: April 24, 2010 03:14PM
Your specific question is an OS question.
But usually the problem is really that the queries need to be better optimized. Find the queries that are running too slowly, then please provide
* SHOW CREATE TABLE tbl\G -- engine, indexes
* SHOW TABLE STATUS LIKE 'tbl'\G -- sizes
* EXPLAIN SELECT ...\G -- clues of inefficiencies
* SHOW VARIABLES LIKE '%buffer%'; -- cache size
and surround them with [ code ] and [ / code ]
If we can make the queries run faster, the original question will be moot.
Subject
Views
Written By
Posted
2473
April 21, 2010 03:38AM
Re: URGENT: MySQL don't get enough CPU
1497
April 24, 2010 03:14PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.