A question often comes when talking about indexing: should we use multiple column indexes or multiple indexes on single columns? Peter Zaitsev wrote about it back in 2008 and the conclusion then was that a multiple column index is most often the best solution. But with all the recent optimizer improvements, is there anything different with MySQL 5.6?

Setup

For this test, we will use these 2 tables (same structure as in Peter’s post):

Tables were populated with 1M rows for this test, i and j have 1000 distinct values (independent of each other). The buffer pool is large enough to hold all data and indexes.

We will look at this query on MySQL 5.5.35 and MySQL 5.6.15:

Why this specific query? With MySQL 5.5, for t1000idx2, the optimizer estimates that the index on (i,j) is not selective enough and it falls back to a full table scan. While for t1000merge, the index on (j) is an obvious good candidate to filter efficiently.

Consequently this query has a better response on t1000merge (0.01s) than on t1000idx2 (0.45s).

On MySQL 5.6, this query is a good candidate for index condition pushdown (ICP), so we can reasonably hope that response time for t1000idx2 will improve.

ICP: FORCE INDEX to the rescue

Unfortunately the optimizer still prefers the full table scan which gives us the same bad response time:

And what if we use FORCE INDEX?

This time ICP is used (see “Using index condition” in the Extra field)!

And the difference in response time is impressive:
– Without FORCE INDEX (full table scan): 0.45s
– With FORCE INDEX (multiple column index + index condition pushdown): 0.04s, a 10x improvement!

Additional thoughts

It is interesting to see that the optimizer fails to find the best execution plan for this simple query. The optimizer trace sheds some light:

This is the estimated cost for a full table scan.
Now we will see how the optimizer estimates the cost of the range scan using the ij index:

At this stage the optimizer does not know if ICP can be used. This probably explains why the cost of the range scan is overestimated.

If we look at the optimizer trace for the query with the FORCE INDEX hint, ICP is only detected after the range scan is chosen:

Conclusion

Multiple column index vs multiple indexes? Having indexes on single columns often lead to the optimizer using the index_merge access type, which is typically not as good as accessing a single index on multiple columns. MySQL 5.6 makes multiple column indexes more efficient than before with index condition pushdown.

But don’t forget that the optimizer is not perfect: you may have to use index hints to benefit from this feature.

10 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
David L

You have a typo in your setup tables:

CREATE TABLE t1000idx2 (
id int not null auto_increment primary key,
i int(11) NOT NULL,
j int(11) NOT NULL,
val char(10) NOT NULL,
KEY ij (ij)
) ENGINE=InnoDB;

The key should be KEY ij (i,j)

D

Jørgen Løland

Hi Stephane,

Great blog post. Your observations are correct – the effect of ICP is not taken into account when the optimizer decides which access method to use, it is just added later if an applicable index has been chosen. Making the optimizer ICP aware on an earlier stage is on our TODO list but it would be really nice to track this in a public feature request. Can you please one on bugs.mysql.com?

Btw, the best index for this query would be “KEY (j, i)”. It would be able to use both keyparts with the range access method and outperform the execution plan using ICP above. I’m sure you’re already aware of this and just wanted to make a point 🙂 For details, see http://jorgenloland.blogspot.com/2011/08/mysql-range-access-method-explained.html and http://jorgenloland.blogspot.com/2012/03/index-condition-pushdown-to-rescue.html

Morgan Tocker

I’ve filed a bug report here:
http://bugs.mysql.com/bug.php?id=71302

Elaine Lindelef

We have been seeing an odd situation in replication where occasionally the optimizer is making terribly bad choices on the slave database. If you run the exact same select on the master, it runs fine, and with an appropriate explain. Run it on the slave and the explain is all wrong. The statistics on the two tables are slightly different. Fixing the statistics (either via intervention or self-healing) fixes the problem, and we could add an index hint. But why would the statistics get to be different on master and slave?

Morgan Tocker

@Elaine: It is a difficult question to answer, since not all queries use statistics, but also InnoDB prior to MySQL 5.6 had far less accurate statistics, so versions will matter here.

Stephane is also demonstrating the optimizer trace feature (new to 5.6) which can show why various plan alternatives were not taken. This might help in your case – http://dev.mysql.com/doc/internals/en/optimizer-tracing-typical-usage.html

Rob Schlüter

Note that after the improvement from 0.45 to 0.04 s the query still uses 4 times more time then the 0.01 s of the other table structure.

Mike K

Yeah, I was going to say the same thing. I’m still not seeing why you’d prefer that one.

Lyrics Mash

Finally got what I was looking for.