MySQL Forums
Forum List  »  Performance

Re: order by primary key slowly
Posted by: Øystein Grøvlen
Date: April 07, 2016 07:21AM

Hi,

The reason the first query is faster is because it can use an index that is much smaller than the PRIMARY index. For InnoDB, all indexes will contain the primary key. Hence, it can use any index when only the primary key is selected. Also, if result is not to be sorted, it can stop scanning the index when the requested number of records have been found.

For the second query, the optimizer has two options:

1. It can use the PRIMARY index, scan it backwards, and stop after 1000010 rows. The data will then be scanned in the requested sort order, and no sorting is needed.

2. It can use the smaller index, scan all 5.5 million index entries, sort the ids, and then skip 1 million rows to pick the 10 rows it needs.

The first option takes longer than executing the first query because the PRIMARY index is much bigger than the index used for the first query. (The primary index contains all other columns of the table.) Also, a backward scan is a bit slower than a forward scan.

It is obvious that the second option takes longer than the first query since it needs to read more than 5 times as many index entries, and in addition sort all the IDs.

If there were no secondary indexes, the first query would be almost as slow as the second query. (There would still be a small difference due forward versus backward index scan.)

In other words, it is not the second query that is slow. It is the first query that is fast. ;-)

Øystein Grøvlen,
Senior Principal Software Engineer,
MySQL Group, Oracle,
Trondheim, Norway

Options: ReplyQuote


Subject
Views
Written By
Posted
2907
April 05, 2016 10:42PM
1254
April 06, 2016 10:15AM
1281
April 06, 2016 11:23AM
1397
April 06, 2016 08:11PM
1318
April 06, 2016 10:35PM
1300
April 07, 2016 12:34AM
Re: order by primary key slowly
3802
April 07, 2016 07:21AM
1360
April 07, 2016 10:20AM
1255
April 07, 2016 11:26PM
1372
April 12, 2016 07:42PM
1223
April 06, 2016 08:57AM
1250
April 06, 2016 10:17AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.