Top Banner
EffectiveMySQL.com - Its all about Performance and Scalability Title Wednesday, October 19, 2011
53

[INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

May 15, 2015

Download

Technology

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Title

Wednesday, October 19, 2011

Page 2: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

Mastering MySQL Performance Tuning

EffectiveMySQL.com - Its all about Performance and Scalability

Title

Ronald Bradfordhttp://ronaldbradford.com

Insight Out DB ShowcaseOctober 2011

Wednesday, October 19, 2011

Page 3: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

OBJECTIVE

Identify key MySQL instrumentation

Detail the MySQL terms to know and use

Provide references to further materials

Wednesday, October 19, 2011

Page 4: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

ABOUT AUTHOR

12 years with MySQL / 22 years with RDBMS

Senior Consultant at MySQL Inc (06-08)

Consultant for Oracle Corporation (96-99)

7 years presenting MySQL content

All time top MySQL blogger

Published author

Oracle ACE Director

Ronald BRADFORD

http://RonaldBradford.com

Available NOW for consulting

Wednesday, October 19, 2011

Page 5: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

MySQL Instrumentation

Wednesday, October 19, 2011

Page 6: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Key sources

Configuration my.cnf (e.g. /etc/my.cnf, /etc/mysql/my.cnf)

SHOW [SESSION|GLOBAL] VARIABLES

INFORMATION_SCHEMA tables

StatusSHOW [SESSION|GLOBAL] STATUS

INFORMATION_SCHEMA tables

Wednesday, October 19, 2011

Page 7: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

STATUS

SHOW STATUS EXAMPLEINFORMATION_SCHEMA.STATUS Example

Wednesday, October 19, 2011

Page 8: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Key Sources

Running ThreadsSHOW FULL PROCESSLIST

INFORMATION_SCHEMA.PROCESSLIST

Storage EnginesSHOW ENGINE INNODB STATUS

Performance SchemaPERFORMANCE_SCHEMA

Wednesday, October 19, 2011

Page 9: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

PROCESSLIST

PROCESSLIST EXAMPLEINFORMATION_SCHEMA.PROCESSLIST Example

Wednesday, October 19, 2011

Page 10: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

KEY areas

System performance

SQL performance

Wednesday, October 19, 2011

Page 11: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Know your system bottleneck

Wednesday, October 19, 2011

Page 12: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

BOTTLENECK

Memory

Disk

CPU

Network

Wednesday, October 19, 2011

Page 13: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

MEMORY

Basic configuration (Global use)

Basic configuration (Thread use)

Memory Tables

Thread Temporary tables

http://dev.mysql.com/doc/refman/5.5/en/memory-use.html

Wednesday, October 19, 2011

Page 14: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Memory

Global Buffer configuration

innodb_buffer_pool_size

key_buffer_size

query_cache_size

Wednesday, October 19, 2011

Page 15: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

InnoDB Size

innodb_buffer_pool_size

Was 1 GB, should be 300M+

AWS small instance with 1.7G RAM

mysql> source sql/innodb_size.sql+-------------------+----------+---------+----------+| title | total_mb | data_mb | index_mb |+-------------------+----------+---------+----------+| Total InnoDB Size | 278 | 171 | 107 |+-------------------+----------+---------+----------+

EXAMPLE

Wednesday, October 19, 2011

Page 16: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

InnoDB Size

innodb_buffer_pool_size

Was 1 GB, should be 300M+

AWS small instance with 1.7G RAM

mysql> source sql/innodb_size.sql+-------------------+----------+---------+----------+| title | total_mb | data_mb | index_mb |+-------------------+----------+---------+----------+| Total InnoDB Size | 278 | 171 | 107 |+-------------------+----------+---------+----------+

EXAMPLE

Rule of 75-80% of RAM is WRONG!

Wednesday, October 19, 2011

Page 17: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

MyISAM Size

key_buffer_size

For MyISAM Indexes ONLY

Was default in RDS, should be 700M+

mysql> source sql/myisam_size.sql+-------------------+----------+---------+----------+| title | total_mb | data_mb | index_mb |+-------------------+----------+---------+----------+| Total MyISAM Size | 6140 | 5492 | 648 |+-------------------+----------+---------+----------+

EXAMPLE

Github

Wednesday, October 19, 2011

Page 18: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

MyISAM Size

key_buffer_size

For MyISAM Indexes ONLY

Was default in RDS, should be 700M+

mysql> source sql/myisam_size.sql+-------------------+----------+---------+----------+| title | total_mb | data_mb | index_mb |+-------------------+----------+---------+----------+| Total MyISAM Size | 6140 | 5492 | 648 |+-------------------+----------+---------+----------+

EXAMPLE

Github

Needs 1M min for all InnoDB system

Wednesday, October 19, 2011

Page 19: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

memory

Thread buffer configuration

read_buffer_size

read_rnd_buffer_size

sort_buffer_size

join_buffer_size

Wednesday, October 19, 2011

Page 20: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

memory

In Memory Tables

max_heap_table_size

Internal Temporary TablesMIN(tmp_table_size,max_heap_table_size)

Wednesday, October 19, 2011

Page 21: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Memory

mysqld memory

Unbounded

Linux process list (ps)

http://ronaldbradford.com/blog/are-you-monitoring-rss-vsz-2009-03-08/

$ $ ps -eopid,fname,vsz,rss,user,command | grep -e "RSS" -e "mysql" PID COMMAND VSZ RSS USER COMMAND13628 grep 3352 820 ubuntu grep -e RSS -e mysql28082 mysqld 631076 405660 mysql /usr/sbin/mysqld

$ ps -eopid,fname,vsz,rss,user,command | grep " mysqld " | grep -v grep | awk '{print $3,$4}'631076 405660

Wednesday, October 19, 2011

Page 22: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

MEMORY

PROCESSLIST

Copying to tmp table

Wednesday, October 19, 2011

Page 23: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Disk

fsync configuration

flush_log_at_trx_commit

sync_binlog

innodb_file_per_table

Wednesday, October 19, 2011

Page 24: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

MySQL DISK

Status Variablesmysql> show global status like 'innodb%write%';+-----------------------------------+-----------+| Innodb_buffer_pool_write_requests | 821053284 || Innodb_data_pending_writes | 0 || Innodb_data_writes | 198400090 || Innodb_dblwr_writes | 547847 || Innodb_log_write_requests | 64860531 || Innodb_log_writes | 188609653 || Innodb_os_log_pending_writes | 0 |+-----------------------------------+-----------+

mysql> show global status like '%sync%';+------------------------------+---------+| Innodb_data_fsyncs | 6835646 || Innodb_data_pending_fsyncs | 0 || Innodb_os_log_fsyncs | 5681432 || Innodb_os_log_pending_fsyncs | 0 |+------------------------------+---------+mysql> show global status like 'created_tmp_disk_tables';+-------------------------+-------+| Created_tmp_disk_tables | 87 |+-------------------------+-------+

Volumes

True Costs

Wednesday, October 19, 2011

Page 25: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

CPU

Query sorting (ORDER BY/GROUP BY)

PROCESSLIST

Sorting result

EXPLAIN

Using Filesort

Wednesday, October 19, 2011

Page 26: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

NETWORK

STATUS

Bytes_sent

Bytes_received

PROCESSLIST

Sending data

Wednesday, October 19, 2011

Page 27: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

SQL

Wednesday, October 19, 2011

Page 28: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

SQL performance

Throughput

Scalability is about increasing throughout

Latency

Performance is about improving latency

Wednesday, October 19, 2011

Page 29: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

THROUgHPUT

Status

Performance Schema

TCP/IP

Wednesday, October 19, 2011

Page 30: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

MySQL STATUS

$ status_now.sh--------------------------+------------+| Variable_name | Value |+--------------------------+------------+| Bytes_received | 142721 || Bytes_sent | 85170 || Com_admin_commands | 160 || Com_delete | 4 || Com_insert | 12 || Com_select | 331 || Com_show_status | 1 || Com_update | 5 || Created_tmp_disk_tables | 52 || Created_tmp_tables | 53 |...| Qcache_inserts | 331 || Qcache_hits | 382 || Qcache_lowmem_prunes | 319 || Qcache_free_memory | -8600 |...| Uptime | 1 |+--------------------------+------------+

EXAMPLE

Temporary disk table writes per second

https://github.com/ronaldbradford/EffectiveMySQL

Wednesday, October 19, 2011

Page 31: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

MySQL STATUS

$ status_now.sh--------------------------+------------+| Variable_name | Value |+--------------------------+------------+| Bytes_received | 142721 || Bytes_sent | 85170 || Com_admin_commands | 160 || Com_delete | 4 || Com_insert | 12 || Com_select | 331 || Com_show_status | 1 || Com_update | 5 || Created_tmp_disk_tables | 52 || Created_tmp_tables | 53 |...| Qcache_inserts | 331 || Qcache_hits | 382 || Qcache_lowmem_prunes | 319 || Qcache_free_memory | -8600 |...| Uptime | 1 |+--------------------------+------------+

EXAMPLEWhat is happening this second?

Temporary disk table writes per second

https://github.com/ronaldbradford/EffectiveMySQL

Wednesday, October 19, 2011

Page 32: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

TCP/IP

TCP/IP Example

Wednesday, October 19, 2011

Page 33: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Latency

EXPLAIN

SHOW CREATE TABLE

SHOW INDEXES

Wednesday, October 19, 2011

Page 34: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

EXPLAin

EXPLAIN Example

Wednesday, October 19, 2011

Page 35: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

LATENCY

Optimizer Trace (Since 5.6.3)

Shows all optimizer actions

Rows statistics

Tree pruning

Wednesday, October 19, 2011

Page 36: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

OPTIMIZER TRACE

Optimizer Trace Example

Wednesday, October 19, 2011

Page 37: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

latency

performance_schema

Introduced in 5.5

Much improved 5.6.3

Wednesday, October 19, 2011

Page 38: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Performance schema

Performance Schema example

Wednesday, October 19, 2011

Page 39: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

throughput

Repeating queries

Redundant queries

Unnecessary complex queries

Wednesday, October 19, 2011

Page 40: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

throughput

MySQL Query Cache

Great for high read

Poor for read/write

Wednesday, October 19, 2011

Page 41: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

The art of doing more starts with doing less

Wednesday, October 19, 2011

Page 42: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

MYSQL STATUS

==================================================================================================== Uptime: 12 hours 17 mins Snapshot Period 1: 1 minute interval ==================================================================================================== Variable Delta/Percentage Per Second Total==================================================================================================== Statement Activity ====================================================================================================

SELECT: 16,042 267.37 8,177,050 (46.03%) INSERT: 5,838 97.30 1,826,616 (10.28%) UPDATE: 1,109 18.48 738,546 (4.16%) DELETE: 2,018 33.63 1,374,983 (7.74%) REPLACE: 0 0.00 0 (0.00%) INSERT ... SELECT: 0 0.00 27 (0.00%) REPLACE ... SELECT: 0 0.00 0 (0.00%) Multi UPDATE: 0 0.00 0 (0.00%) Multi DELETE: 0 0.00 0 (0.00%) COMMIT: 5,708 95.13 2,161,232 (12.17%) ROLLBACK: 5,746 95.77 3,485,828 (19.62%)

EXAMPLE

Why are you doing crazy things Mr Framework?

Wednesday, October 19, 2011

Page 43: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Row Processing

SELECT name FROM firms WHERE id=727;SELECT name FROM firms WHERE id=758;SELECT name FROM firms WHERE id=857;SELECT name FROM firms WHERE id=740;SELECT name FROM firms WHERE id=849;SELECT name FROM firms WHERE id=839;SELECT name FROM firms WHERE id=847;SELECT name FROM firms WHERE id=867;SELECT name FROM firms WHERE id=829;SELECT name FROM firms WHERE id=812;SELECT name FROM firms WHERE id=868;SELECT name FROM firms WHERE id=723;

EXAMPLE

SELECT id, nameFROM firms WHERE id IN (723, 727, 740, 758, 812, 829, 839, 847, 849, 857, 867, 868);

http://ronaldbradford.com/blog/optimizing-sql-performance-the-art-of-elimination-2010-07-08/http://ronaldbradford.com/blog/simple-lessons-in-improving-scalability-2011-02-16/

http://ronaldbradford.com/blog/the-rat-and-the-cat-2006-08-24/

Wednesday, October 19, 2011

Page 44: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Row Processing

SELECT name FROM firms WHERE id=727;SELECT name FROM firms WHERE id=758;SELECT name FROM firms WHERE id=857;SELECT name FROM firms WHERE id=740;SELECT name FROM firms WHERE id=849;SELECT name FROM firms WHERE id=839;SELECT name FROM firms WHERE id=847;SELECT name FROM firms WHERE id=867;SELECT name FROM firms WHERE id=829;SELECT name FROM firms WHERE id=812;SELECT name FROM firms WHERE id=868;SELECT name FROM firms WHERE id=723;

EXAMPLE

SELECT id, nameFROM firms WHERE id IN (723, 727, 740, 758, 812, 829, 839, 847, 849, 857, 867, 868);

Classic N+1 problem

http://ronaldbradford.com/blog/optimizing-sql-performance-the-art-of-elimination-2010-07-08/http://ronaldbradford.com/blog/simple-lessons-in-improving-scalability-2011-02-16/

http://ronaldbradford.com/blog/the-rat-and-the-cat-2006-08-24/

Wednesday, October 19, 2011

Page 45: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Row Processing

SET PROFILING=1;SELECT …SHOW PROFILES;+----------+------------+---------------------------------------------------------| Query_ID | Duration | Query +----------+------------+---------------------------------------------------------| 1 | 0.00030400 | SELECT name FROM firms WHERE id=727 | 2 | 0.00014400 | SELECT name FROM firms WHERE id=758 | 3 | 0.00014300 | SELECT name FROM firms WHERE id=857 | 4 | 0.00014000 | SELECT name FROM firms WHERE id=740 | 5 | 0.00012300 | SELECT name FROM firms WHERE id=849 | 6 | 0.00012200 | SELECT name FROM firms WHERE id=839 | 7 | 0.00011600 | SELECT name FROM firms WHERE id=847 | 8 | 0.00014300 | SELECT name FROM firms WHERE id=867 | 9 | 0.00013900 | SELECT name FROM firms WHERE id=829 | 10 | 0.00014000 | SELECT name FROM firms WHERE id=812 | 11 | 0.00012800 | SELECT name FROM firms WHERE id=868 | 12 | 0.00011700 | SELECT name FROM firms WHERE id=723 | 13 | 0.00031100 | SELECT id, name FROM firms WHERE id IN (723 ...+----------+------------+---------------------------------------------------------

EXAMPLE

SELECT 'Sum Individual Queries' AS txt,SUM(DURATION) AS total_time FROM INFORMATION_SCHEMA.PROFILING WHERE QUERY_ID BETWEEN 1 AND 12 UNIONSELECT 'Combined Query',SUM(DURATION) FROM INFORMATION_SCHEMA.PROFILING WHERE QUERY_ID = 13;+------------------------+------------+| txt | total_time |+------------------------+------------+| Sum Individual Queries | 0.001311 || Combined Query | 0.000311 |+------------------------+------------+

4X longer processing for every page load

Wednesday, October 19, 2011

Page 46: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Row Processing

SET PROFILING=1;SELECT …SHOW PROFILES;+----------+------------+---------------------------------------------------------| Query_ID | Duration | Query +----------+------------+---------------------------------------------------------| 1 | 0.00030400 | SELECT name FROM firms WHERE id=727 | 2 | 0.00014400 | SELECT name FROM firms WHERE id=758 | 3 | 0.00014300 | SELECT name FROM firms WHERE id=857 | 4 | 0.00014000 | SELECT name FROM firms WHERE id=740 | 5 | 0.00012300 | SELECT name FROM firms WHERE id=849 | 6 | 0.00012200 | SELECT name FROM firms WHERE id=839 | 7 | 0.00011600 | SELECT name FROM firms WHERE id=847 | 8 | 0.00014300 | SELECT name FROM firms WHERE id=867 | 9 | 0.00013900 | SELECT name FROM firms WHERE id=829 | 10 | 0.00014000 | SELECT name FROM firms WHERE id=812 | 11 | 0.00012800 | SELECT name FROM firms WHERE id=868 | 12 | 0.00011700 | SELECT name FROM firms WHERE id=723 | 13 | 0.00031100 | SELECT id, name FROM firms WHERE id IN (723 ...+----------+------------+---------------------------------------------------------

EXAMPLE

SELECT 'Sum Individual Queries' AS txt,SUM(DURATION) AS total_time FROM INFORMATION_SCHEMA.PROFILING WHERE QUERY_ID BETWEEN 1 AND 12 UNIONSELECT 'Combined Query',SUM(DURATION) FROM INFORMATION_SCHEMA.PROFILING WHERE QUERY_ID = 13;+------------------------+------------+| txt | total_time |+------------------------+------------+| Sum Individual Queries | 0.001311 || Combined Query | 0.000311 |+------------------------+------------+

4X longer processing for every page load

Instant DB Scalability

Wednesday, October 19, 2011

Page 47: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

resources

Many principles are straight forward for experienced Oracle resoures

Open Source projects

Less skilled workforce

Wednesday, October 19, 2011

Page 48: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Architecture

Wednesday, October 19, 2011

Page 49: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

ARCHITECTure

Storage Engines

Reducing SQL

Monitoring

Replication

Wednesday, October 19, 2011

Page 50: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

replication

Weakest Link

Wednesday, October 19, 2011

Page 51: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

conclusion

MySQL is a relational database

Internals are very different

Instrumentation is improving in new versions 5.5 GA 5.6 DMR

Planet MySQL http://planet.mysql.com

Wednesday, October 19, 2011

Page 52: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalability

Available NOW

http://effectivemysql.com/book/optimizing-sql-statements/Wednesday, October 19, 2011

Page 53: [INSIGHT OUT 2011] A17 mastering my sql performance tuning(ronald bradford)

EffectiveMySQL.com - Its all about Performance and Scalabilityhttp://effectiveMySQL.comRonald Bradford

Wednesday, October 19, 2011