We had discussion today which involved benchmarks of Join speed for MyISAM and Innodb storage engines for CPU bound workload, this is when data size is small enough to fit in memory and so buffer pool.
I tested very simple table, having with about 20.000 rows in it on 32bit Linux. The columns “id” “i” and “c” were populated with same integers so we can allow the same job to be done using different kinds of columns – primary key, integer indexed column and indexed char column. The query is also trivial – the point was to make sure it is not index covered query so it reads the rows and it does not return many rows. I varied the join clause to be id, i and C columns appropriately.
|
1 2 3 4 5 6 7 8 9 10 11 |
CREATE TABLE `t1` ( `id` int(10) unsigned NOT NULL default '0', `i` int(10) unsigned NOT NULL default '0', `c` char(15) default NULL, `pad` char(8) default NULL, PRIMARY KEY (`id`), KEY `i` (`i`), KEY `c` (`c`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; select count(t1.pad),count(t2.pad) from t1,t1 t2 where t1.id=t2.id; |
The result I’ve got are as follows
| Storage Engine | ID | I | C |
| MyISAM | 0.24s | 0.27s | 1.19s |
| Innodb | 0.07s | 0.30s | 0.38s |
As you see in such circumstances Innodb is actually faster than MyISAM in 2 cases out of 3. I guess the reasons are the following:
Note: This applies to CPU bound workload with all content fitting in memory. In other cases situation is very different and MyISAM compression for char keys could frequently positevely impact performance.