November 12, 2006

When EXPLAIN can be misleading

Posted by peter

One think I can see with people using EXPLAIN is trusting it too much, ie assuming if number of rows is reported by EXPLAIN is large query must be inefficient. It may not be the case.

The question is not only about stats which may be wrong and which is why you may want to profile your queries if you have any hesitations in EXPLAIN accuracy.

The other problem however is EXPLAIN does not take LIMIT into account while estimating number of rows. Basically it gives you the estimates of producing whole result set while it may stop much faster in case LIMIT is used.

Take a look at this simple example:

SQL:
  1. mysql> EXPLAIN SELECT * FROM rnd  ORDER BY r DESC LIMIT 1 \G
  2. *************************** 1. row ***************************
  3.            id: 1
  4.   select_type: SIMPLE
  5.         TABLE: rnd
  6.          type: INDEX
  7. possible_keys: NULL
  8.           KEY: r
  9.       key_len: 4
  10.           ref: NULL
  11.          rows: 49280
  12.         Extra: USING INDEX
  13. 1 row IN SET (0.00 sec)

This EXPLAIN estimates there would be almost 50.000 of rows scanned while really there would be only 1. Same applies to full table scans with limit.

The other little annoyance is - MySQL will report these queries to slow query log if --log-queries-not-using-indexes is enabled which may flood it quite badly. Too bad --min-examined-row-limit is not yet implemented :)

EXPLAIN would also return misleading number of rows for queries of the type:
SELECT ... FROM TBL WHERE KEY_PART1=CONST ORDER BY KEY_PART2 LIMIT N

In this case it would not be considered full table scan and reported to slow query log however.

Related posts: :MySQL Error Message Nonsenses::Extended EXPLAIN::MySQL Optimizer and Innodb Primary Key:
 

1 Comment »

  1. [...] Original post by peter and software by Elliott Back 12:46 pm [...]

    Pingback :: November 15, 2006 @ 12:42 am

 

Subscribe without commenting


This page was found by: stronicowanie danych mysql explain rows