Search This Blog

Thursday, October 13, 2011

MySQL versions shootout

MySQL versions shootout:

As part of work on “High Performance MySQL, 3rd edition”, Baron asked me to compare different MySQL version in some simple benchmark, but on decent hardware.


So why not.


I took our Cisco UCS C250 and ran simple sysbench oltp read-write all data fits into memory workload.


Versions in question:



  • MySQL 4.1

  • MySQL 5.0

  • MySQL 5.1 (with built-in InnoDB)

  • MySQL 5.1 with InnoDB-plugin

  • MySQL 5.5

  • MySQL 5.6


All versions are vanilla MySQL, not Percona Server.


The results are there:


There is nothing unexpected, staring with InnoDB-plugin, MySQL scale much better on multi-cores, there is gain up to 1.7x in throughput.


What is interesting there, let’s take look on single thread results:



You can see that each new version is slower in single thread than previous.

It is actually easily explainable: each new version adds more features, which give more overhead.

Profiling MySQL 5.0 vs MySQL 4.1 couple years ago, I have seen biggest performance hit comes

from query parser. In MySQL 5.0 grammar became much bigger because of storage procedures and triggers.


And raw results, in tps (more is better)













































































threadsMySQL 4.1MySQL 5.0MySQL 5.1MySQL 5.1+InnoDB-pluginMySQL 5.5MySQL 5.6.2
1685.52639.73596.01593.51531.07525.80
21306.501221.401139.601139.201076.591018.64
42274.832167.922031.802042.511937.641830.80
83879.113746.293606.023681.363522.653320.10
164373.824527.044392.816130.705881.405572.50
324591.424864.464698.397762.327548.937138.54
644688.415078.024910.217535.657269.476994.04

Scripts and results are also on our Launchpad Benchmark project








No comments:

Post a Comment