MySQL Perf Tuning Best Practices
MySQL Perf Tuning Best Practices
Jay Pipes
Community Relations Manager, North America
(jay@mysql.com)
TELECONFERENCE: please dial a number to hear the audio portion of this presentation.
Copyright 2005 MySQL AB The World’s Most Popular Open Source Database 2
Second Generation Open Source
• MySQL AB is a profitable company
– Develops the software in-house; community helps test it
– Owns source code, copyrights and trademarks
– Targets the “commoditized” market for databases
• “Quid Pro Quo” dual licensing for OEM market
– Open source GPL license for open source projects
– Cost-effective commercial licenses for commercial use
• Annual MySQL Network subscription for Enterprise and Web
– Per server annual subscription
– Includes support, alert and update advisors, Knowledge Base,
Certified/Optimized Binaries
• MySQL supports it users
– Worldwide 24 x 7 support
– Training and certification
– Consulting “Reasoning's inspection study shows that the
code quality of MySQL was six times better
than that of comparable proprietary code. ”
Reasoning Inc.
change(s) made
● Stress/Load testing of application and/or database
● Harness or framework useful to automate many
benchmark tasks
● mysqlslap (5.1+)
➢ http://dev.mysql.com/doc/refman/5.1/en/mysqlslap.html
● MyBench
● http://jeremy.zawodny.com/mysql/mybench/
➢ CPU
➢ I/O (Disk)
➢ Network and OS
● MyTop
➢ http://jeremy.zawodny.com/mysql/mytop/
// This top query uses the index
CREATE TABLE Tags (
// on Products2Tags
tag_id INT NOT NULL AUTO_INCREMENT
, tag_text VARCHAR(50) NOT NULL
SELECT p.name
, PRIMARY KEY (tag_id)
, COUNT(*) as tags
) ENGINE=MyISAM;
FROM Products2Tags p2t
INNER JOIN Products p
CREATE TABLE Products (
ON p2t.product_id = p.product_id
product_id INT NOT NULL AUTO_INCREMENT
GROUP BY p.name;
, name VARCHAR(100) NOT NULL
// many more fields...
// This one does not because
, PRIMARY KEY (product_id)
// index order prohibits it
) ENGINE=MyISAM;
SELECT t.tag_text
CREATE TABLE Products2Tags (
, COUNT(*) as products
product_id INT NOT NULL
FROM Products2Tags p2t
, tag_id INT NOT NULL
INNER JOIN Tags t
, PRIMARY KEY (product_id, tag_id)
ON p2t.tag_id = t.tag_id
) ENGINE=MyISAM;
GROUP BY t.tag_text;
CREATE TABLE Tags (
tag_id INT NOT NULL AUTO_INCREMENT
, tag_text VARCHAR(50) NOT NULL
, PRIMARY KEY (tag_id)
) ENGINE=MyISAM;
CREATE INDEX ix_tag
ON Products2Tags (tag_id);
CREATE TABLE Products (
product_id INT NOT NULL AUTO_INCREMENT
// or... create a covering index:
, name VARCHAR(100) NOT NULL
// many more fields...
CREATE INDEX ix_tag_prod
, PRIMARY KEY (product_id)
ON Products2Tags (tag_id, product_id);
) ENGINE=MyISAM;
// But, only if not InnoDB... why?
CREATE TABLE Products2Tags (
product_id INT NOT NULL
, tag_id INT NOT NULL
, PRIMARY KEY (product_id, tag_id)
) ENGINE=MyISAM;
➢ Homegrown
➢ Partitioning (5.1+)
of records
● Less frequently queried data doesn't take up memory
● More possibilities for indexing and different storage
engines
➢ Allows targeted multiple MyISAM key caches for hot
CREATE TABLE Products (
product_id INT NOT NULL AUTO_INCREMENT
, name VARCHAR(80) NOT NULL
CREATE TABLE Products (
, unit_cost DECIMAL(7,2) NOT NULL
product_id INT NOT NULL AUTO_INCREMENT
, description TEXT NULL
, name VARCHAR(80) NOT NULL
, image_path TEXT NULL
, unit_cost DECIMAL(7,2) NOT NULL
, PRIMARY KEY (product_id)
, description TEXT NULL
, INDEX (name(20))
, image_path TEXT NULL
) ENGINE=InnoDB; // Or MyISAM
, num_views INT UNSIGNED NOT NULL
, num_in_stock INT UNSIGNED NOT NULL
CREATE TABLE ProductCounts (
, num_on_order INT UNSIGNED NOT NULL
product_id INT NOT NULL
, PRIMARY KEY (product_id)
, num_views INT UNSIGNED NOT NULL
, INDEX (name(20))
, num_in_stock INT UNSIGNED NOT NULL
) ENGINE=InnoDB; // Or MyISAM
, num_on_order INT UNSIGNED NOT NULL
, PRIMARY KEY (product_id)
// Getting a simple COUNT of products
) ENGINE=InnoDB;
// easy on MyISAM, terrible on InnoDB
SELECT COUNT(*)
CREATE TABLE ProductCountSummary (
FROM Products;
total_products INT UNSIGNED NOT NULL
) ENGINE=MEMORY;
CREATE TABLE Products2Tags (
record_id INT UNSIGNED NOT NULL AUTO_INCREMENT
, product_id INT UNSIGNED NOT NULL
, tag_id INT UNSIGNED NOT NULL
, PRIMARY KEY (record_id)
, UNIQUE INDEX (product_id, tag_id)
) ENGINE=InnoDB;
(examples ahead)
● Don't try to outthink the optimizer
➢ Sergey, Timour and Igor are really, really smart...
// Better idea
SELECT *
FROM Orders
WHERE
// Bad idea order_created >= CURRENT_DATE() – INTERVAL 7 DAY;
SELECT *
FROM Orders // Best idea is to factor out the CURRENT_DATE
WHERE // nondeterministic function in your application
TO_DAYS(order_created) – // code and replace the function with a constant.
TO_DAYS(CURRENT_DATE()) >= 7; // Now, query cache can actually cache the query!
SELECT order_id, order_created, customer_id
FROM Orders
WHERE order_created >= '20060524' – INTERVAL 7 DAY;
// So, we enable fast searching on a reversed field
// value by inserting a calculated field
ALTER TABLE Customers
// Initial schema
ADD COLUMN rv_email VARCHAR(80) NOT NULL;
CREATE TABLE Customers (
customer_id INT NOT NULL
// Now, we update the existing table values
, email VARCHAR(80) NOT NULL
UPDATE Customers SET rv_email = REVERSE(email);
// more fields
, PRIMARY KEY (customer_id)
// Then, we make a trigger to keep our data in sync
, INDEX (email(40))
DELIMITER ;;
) ENGINE=InnoDB;
CREATE TRIGGER trg_bi_cust
BEFORE INSERT ON Customers
// Bad idea, can't use index
FOR EACH ROW BEGIN
// on email field
SET NEW.rv_email = REVERSE(NEW.email);
SELECT *
END ;;
FROM Customers
WHERE email LIKE '%.com';
// same trigger for BEFORE UPDATE...
// Then SELECT on the new field...
WHERE rv_email LIKE CONCAT(REVERSE('.com'), '%');
// Good practice
// Bad practice
SELECT p.name
SELECT p.name
, MAX(oi.price) AS max_sold_price
, (SELECT MAX(price)
FROM Products p
FROM OrderItems
INNER JOIN OrderItems oi
WHERE product_id = p.product_id)
ON p.product_id = oi.product_id
AS max_sold_price
GROUP BY p.name;
FROM Products p;
// Good performance
SELECT
c.company
// Bad performance
, o.*
SELECT
FROM Customers c
c.company
INNER JOIN (
, o.*
SELECT
FROM Customers c
customer_id
INNER JOIN Orders o
, MAX(order_date) as max_order
ON c.customer_id = o.customer_id
FROM Orders
WHERE order_date = (
GROUP BY customer_id
SELECT MAX(order_date)
) AS m
FROM Orders
ON c.customer_id = m.customer_id
WHERE customer = o.customer
INNER JOIN Orders o
)
ON c.customer_id = o.customer_id
GROUP BY c.company;
AND o.order_date = m.max_order
GROUP BY c.company;
✔ http://dev.mysql.com/tech-resources/articles/pro-
mysql-ch6.pdf
➢ Pro MySQL (Apress) chapter on profiling (EXPLAIN)
➢ War stories
● Feedback on webinar
● Other webinar or article topics you'd like to hear about
● Gripes :)
● Anything else you feel like talking about!
Jay Pipes
(jay@mysql.com)
MySQL, Inc.