Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Like other database engines, MySQL provides execution plans for queries, so lets go ahead and ask MySQL to give us the execution plan - by adding EXPLAIN to the start of the query.

Doing so, gives the following output:

 

idselect_typetabletypepossible_keyskeykey_lenrefrowsextra
1PRIMARY<derived2>ALL    852 
1PRIMARYR_1eq_refPRIMARYPRIMARY8S_1.X_41 
1PRIMARYR_2eq_refPRIMARYPRIMARY8S_1.X_31 
1PRIMARYR_3eq_refPRIMARYPRIMARY8S_1.X_21 
1PRIMARYR_4eq_refPRIMARYPRIMARY8S_1.X_61 
1PRIMARYR_5eq_refPRIMARYPRIMARY8S_1.X_11 
1PRIMARYR_6eq_refPRIMARYPRIMARY8S_1.X_51 
2DERIVEDQ_1refSubjPredObj,PredObjSubj,ObjSubjPredSubjPredObj24const,const,const1Using where; Using index; Using temporary
2DERIVEDQ_2refSubjPredObj,PredObjSubjSubjPredObj16const,const1Using where; Using index
2DERIVEDQ_3refSubjPredObj,PredObjSubj,ObjSubjPredSubjPredObj16const,const852Using where; Using index
2DERIVEDQ_4refSubjPredObj,PredObjSubj,ObjSubjPredSubjPredObj24Q_3.o,const,const1Using where; Using index
2DERIVEDQ_5refSubjPredObj,PredObjSubj,ObjSubjPredSubjPredObj16Q_3.o,const1Using where; Using index
2DERIVEDQ_6refSubjPredObj,PredObjSubj,ObjSubjPredSubjPredObj24Q_5.o,const,const1Using where; Using index
2DERIVEDQ_7refSubjPredObj,PredObjSubj,ObjSubjPredSubjPredObj16Q_5.o,const1Using index
2DERIVEDQ_8refSubjPredObj,PredObjSubj,ObjSubjPredSubjPredObj24Q_7.o,const,const1Using where; Using index; Distinct
2DERIVEDQ_9refSubjPredObj,PredObjSubj,ObjSubjPredSubjPredObj16Q_7.o,const1Using where; Using index; Distinct
2DERIVEDQ_10refSubjPredObj,PredObjSubj,ObjSubjPredSubjPredObj24Q_9.o,const,const1Using where; Using index; Distinct
2DERIVEDQ_11refSubjPredObj,PredObjSubjSubjPredObj16Q_9.o,const1Using index; Distinct

So, what does this tell us about the query? Well, first of all it looks like there is very good index use, so the most obvious thing you look for - index usage - is already covered.

But look carefully at the 8 row - the entry for table Q_1 - what is that it says at the end? "Using temporary".

Under certain circumstances, MySQL can use a temporary table to answer DISTINCT queries, and when we look back at the original SQL, there is a SELECT DISTINCT on Q_1. Now, as an experiment, if we remove the DISTINCT, we actually get the same results from the query - but it returns in a little over 6 seconds. SIX SECONDS! This query originally took 20...

But we can't just remove the DISTINCT - because that's part of the SQL generated from SDB, and we would need to go in and modify SDB. Hmmm. So what can we do about the temporary table?

It's not clear what is going into the temporary table, and therefore how big it is. But knowing that it is select 4 hashes per row, each hash is 8 bytes, and there are 200,000 rows, that's at least 9M. Possibly up to 67M (11 tables, 4 hashes per table, 200,000 rows).

The amount of memory allocated by default to temporary tables is 16M, after which it creates temporary tables on disk. The temporary table above being written to disk is certainly going to kill performance!

There are two settings in my.cnf that need to be changed to alter the available temporary table size:

Code Block
languagetext
max_heap_table_size=256M

tmp_table_size=256M

It's important to note that this is not a recommendation for a temporary table size, we're just testing the hypothesis - we may be able to get away with smaller. Alternatively, your system may need larger.

 

 

Info
titleUnused Tweaks

Reading the documentation on MySQL, there is in 5.6 a feature called "batched key access", which on the surface should help with large joins. However, when tested on this query, it appeared to make no difference

...