October 5, 2007

UNION vs UNION ALL Performance

Posted by peter |

When I was comparing performance of UNION vs MySQL 5.0 index merge algorithm Sinisa pointed out I should be using UNION ALL instead of simple UNION in my benchmarks, and he was right. Numbers would be different but it should not change general point of having optimization of moving LIMIT inside of union clause being cool thing.

But So is UNION ALL indeed faster than UNION DISTINCT (the UNION is shortcut for UNION DISTINCT) ?

Indeed it is. I did not have the same data as I used for the other test but I created similar test case - table with separate indexes on "a" and "b" columns with cardinality of 100, having about 40.000.000 of rows

SQL:
  1. SELECT * FROM test.abc WHERE i=5 union  SELECT * FROM test.abc WHERE j=5

This original query was taking about 22 seconds.

As I modified it:

SQL:
  1. SELECT * FROM test.abc WHERE i=5 union ALL SELECT * FROM test.abc WHERE j=5 AND i!=5

The query time dropped to about 6 seconds which is 3.5 times faster - quite considerable improvement.

As you can notice I added "i!=5" clause - this is what allows us to ensure we do not have duplicate rows in result set matching both conditions and so result will be same as query with "i=5 or j=5" where clause.

I also tried this original query (which uses index merge method in MySQL 5.0):

SQL:
  1. SELECT * FROM test.abc WHERE i=5 OR j=5

Such query takes 4 seconds so if you do not need to trick with order by and limit using index merge is faster than UNION as it indeed should be.

So why UNION ALL is faster than UNION DISTINCT ?

The first informed guess would be - because UNION ALL does not need to use temporary table to store result set, however this is not correct - both UNION ALL and UNION distinct use temporary table for result generation. Perhaps one more thing for Optimizer Team to look into.

Interesting enough the fact UNION and UNION ALL require temporary table can only be seen in SHOW STATUS - EXPLAIN does not want to tell you this shameful fact:

SQL:
  1. mysql> EXPLAIN (SELECT * FROM test.abc WHERE i=5) union ALL (SELECT * FROM test.abc WHERE j=5 AND i!=5) \G
  2. *************************** 1. row ***************************
  3.            id: 1
  4.   select_type: PRIMARY
  5.         TABLE: abc
  6.          type: ref
  7. possible_keys: i
  8.           KEY: i
  9.       key_len: 5
  10.           ref: const
  11.          rows: 348570
  12.         Extra: USING WHERE
  13. *************************** 2. row ***************************
  14.            id: 2
  15.   select_type: UNION
  16.         TABLE: abc
  17.          type: ref
  18. possible_keys: i,j
  19.           KEY: j
  20.       key_len: 5
  21.           ref: const
  22.          rows: 349169
  23.         Extra: USING WHERE
  24. *************************** 3. row ***************************
  25.            id: NULL
  26.   select_type: UNION RESULT
  27.         TABLE: <union1,2>
  28.          type: ALL
  29. possible_keys: NULL
  30.           KEY: NULL
  31.       key_len: NULL
  32.           ref: NULL
  33.          rows: NULL
  34.         Extra:
  35. 3 rows IN SET (0.00 sec)

In fact EXPLAIN output is the same for UNION and UNION ALL (which is too bad as execution for them is obviously different).

The difference in execution speed comes from the fact UNION requires internal temporary table with index (to skip duplicate rows) while UNION ALL will create table without such index.

This also explains why difference becomes larger when on disk table is required (as in this case) - Hash indexes used by MEMORY table are very efficient and do not give so much overhead.

Related posts: :Possible optimization for sort_merge and UNION ORDER BY LIMIT::Using UNION to implement loose index scan in MySQL::MySQL: Followup on UNION for query optimization, Query profiling:
 

8 Comments »

  1. I read the source for UNION once (Mark Leith pointed me to it). It’s not very much code. The only difference between the two is the temporary table has the “distinct” property set, as I recall. So of course that means a unique index on all columns, which is bound to be slow.

    We should mention this in our book… it’s such an instinct for me to use UNION ALL that I forgot about it. I’ll go look and see if we have mentioned it anywhere.

    Comment :: October 5, 2007 @ 6:07 pm

  2. Baron,

    I think the most important thing here is the fact even UNION ALL uses temporary table, while it could simply be sending result sets one after another in many cases, possibly with little conversion to adjust data types.

    The unique index is in fact not index on all columns but some form of hash index – with MyISAM key limit index on all columns would not work for tables with long rows not to mention BLOBs

    Comment :: October 6, 2007 @ 2:01 am

  3. 3. Scott Marlowe

    Union All is generally faster than union because it doesn’t have to do a sort / unique step.

    With union all, you smoosh two data sets together not caring if there are dups or not. union (distinct) has to then go that extra step to remove dups.

    TANSTAAFL

    Comment :: November 8, 2007 @ 10:48 am

  4. Hey Scott,

    This is what I mentioned too. The point was not to see if it is faster but to get the measure of the thing in numbers.

    Comment :: November 8, 2007 @ 2:06 pm

  5. 5. ramasubramanian.G

    sldfj

    Comment :: March 21, 2008 @ 2:45 am

  6. 6. Sebastian Gomez Morales

    great article! (as usual)
    thanks a lot.
    i was looking for this and this text was very helpful
    keep the good work, boys

    Comment :: March 25, 2008 @ 3:45 pm

  7. 7. Charu

    Hi,

    Can someone answer my related query posted in the mysql performance forum.Query can be found here:

    http://forum.mysqlperformanceblog.com/s/mv/tree/743/

    Thanks.

    Comment :: May 18, 2008 @ 11:55 pm

  8. Hey, thanks for the article, helped me also.

    Comment :: September 9, 2009 @ 3:16 am

 

Subscribe without commenting

Trackbacks/Pingbacks