Optimizing MySQL -

Posted by Josh on Programmers See other posts from Programmers or by Josh
Published on 2012-08-28T03:52:09Z Indexed on 2012/08/28 9:50 UTC
Read the original article Hit count: 392

Filed under:
|
|

I've been researching how to optimize MySQL a bit, but I still have a few questions.

MySQL Primer Results http://pastie.org/private/lzjukl8wacxfjbjhge6vw

Based on this, the first problem seems to be that the max_connections limit is too low. I had a similar problem with Apache initially, the max connection limit was set to 100, and the web server would frequently lock up and take an excruciatingly long time to deliver pages. Raising the connection limit to 512 fixed this issue, and I read that raising the connection limit on MySQL to match this was considered good practice.

Being that MySQL has actually been "locking up" recently as well (connections have been refused entirely for a few minutes at a time at random intervals) I'm assuming this is the main cause of the issue.

However, as far as table cache goes, I'm not sure what I should set this as. I've read that setting this too high can hinder performance further, so should I raise this to right around 551, 560, 600, or do something else?

Lastly, as far as raising the join_buffer_size value goes, this doesn't even seem to be included in Debian's my.cnf file by default. Assuming there's not much I can do about adding indexes, should I look into raising this? Any suggested values?

Any suggestions in general here would be appreciated as well.

Edit: Here's the number of open tables the MySQL server is reporting. I believe this value is related to my question (Opened_tables: 22574)

© Programmers or respective owner

Related posts about mysql

Related posts about optimization