Slow query after upgrade mysql from 5.5 to 5.6

后端 未结 2 592
梦如初夏
梦如初夏 2021-01-16 03:29

We\'re upgrading mysql from 5.5 to 5.6 and some queries are deadly slow now.

Queries that took 0.005 seconds before are now taking 49 seconds.

Queries on 5.6

相关标签:
2条回答
  • 2021-01-16 03:35

    Ultimately the accepted answer above is correct.

    The help from @RandomSeed got me thinking in the right direction. Basically the optimization plans created in 5.6 are significantly different from those in 5.5, so you'll probably have to rework your query, much like I did.

    I did not end up using the FORCE INDEX, but instead removed portions of the query until I determined what was causing 5.6 to miss the index. Then I reworked the application logic to deal with that.

    0 讨论(0)
  • 2021-01-16 03:42

    The slow query in v5.6 is caused by the engine being unable to, or deciding not to, merge the two relevant indexes (index_contents_on_slug_hash, index_contents_on_slug) in order to process your query. Remember that a query may only use one index per table. In order to be able to take advantage of several indexes on the same table, it needs to pre-merge on-the-fly these indexes into one (in memory). This is the meaning of the index_merge and Using union(...) notices in your execution plan. This consumes time and memory, obviously.

    Quick fix (and probably preferred solution anyways): add a two-colums index on slug and slug_hash.

    ALTER TABLE pens ADD INDEX index_contents_on_slug_and_slug_hash (
        slug, slug_hash
    );
    

    Now your new server is probably unable to merge these indexes because it results in an index too large to fit in the buffer. Your new server probably has a much smaller value for key_buffer_size (if the table is MyISAM) or for innodb_buffer_pool_size (if InnoDB) than there used to be in your older installation.

    0 讨论(0)
提交回复
热议问题