MySQL Forums
Forum List  »  Performance

Re: MySQL 5.6 update doubled IOs
Posted by: Dimitri Kravtchuk
Date: March 27, 2013 11:11AM

Hi Christian,

well, to compare apples-to-apples you should first:
- adapt your my.conf settings for both servers in the same way (there are many things left by default, and defaults are different in 5.5 and 5.6 (for ex. purge thread is off by default in 5.5, io capacity max is 2000 in 5.6 while it's not present in 5.5 and default io capacity is 200, etc. and so on..))

- application logic should be the same (so move these 3 tables to MyISAM as it was before -- MyISAM fully relays on your FS, and it'll not write any data until "flush" is not involved via MySQL or FS itself will decide to write modified data to the disk, but it happens in background and not involving any sync)..

- I'm very curious also about these "statements" you've executed on the dev-servers and they seem to run slower on 5.6 : do you have their EXPLAIN? execution time profile output? optimizer traces (for 5.6) ?

- also, is there any other processes than MySQL running on the server? do you have a "run queue" graph? (and CPU usage as well)..

Thank you for all these details!

Rgds,
-Dimitri

Options: ReplyQuote


Subject
Views
Written By
Posted
1318
March 20, 2013 08:52AM
Re: MySQL 5.6 update doubled IOs
1387
March 27, 2013 11:11AM
1220
March 27, 2013 11:44PM
1254
March 28, 2013 07:49PM
1182
April 02, 2013 12:20AM
1227
April 02, 2013 09:57PM
1199
April 10, 2013 08:31AM


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.