I am confused with MySQL connections. I have site that receives heavy requests during working hours. I use PHP to connect to MySQL database using persistant connection. Few weeks back, I increased mysql connections to 500 that crashed my server then I put it back to 150. Now users complaints that sometimes they cannot get on the site. I believe that this is due to limited connections.

Can you please give me some information that whether I use persistant or non-persistant? What sections of mysql do I need to tune to get optimized connection processing? I have attached a screenshot that shows 11K Failed Attempts. http://i.stack.imgur.com/GkxHP.jpg

Thank you so much...

Update Dec 17, 2011

When I asked this question, I changed the connection type to "non-persistant" and everything starts working fine. Today I surprised to see that the stats from phpmyadmin. Below are the values given by Phpmyadmin:

max. concurrent connections :: 16
Failed Attempts :: 43k

Please suggest some possible solutions? Which parameter should be optimized to avoid/minimize Failed attempts?

link|improve this question

67% accept rate
1  
You should probably start accepting some answers to your questions. People are much more likely to answer if you have a high accept rate. – Cameron Skinner Oct 8 '11 at 3:37
1  
You really should work on your accept rate. People won't want to spend their time trying to help you if you don't. This entire site works on questions being asked and answered, and those answers that solve your problem (or help you find the answer yourself) being accepted as correct. You may want to read this meta post for more info. If you're not willing to work with the way this site is designed, you may want to look for help somewhere else. Thanks. :) – Ken White Oct 8 '11 at 3:40
Obviously "failed attempt" comes from the fact that your site reached the max number of possible connection. Now the question is WHY did it crash when you turned it to 500 max connections ?? – madkitty Oct 8 '11 at 7:16
Thank you madkitty. It means high traffic sites should not use persistant connections since we have limited connections available in that case. Nor sure why did it crash. But that is the only change that I did before the crash. – D3 K Oct 9 '11 at 4:08
feedback

1 Answer

High traffic sites should not use persistent connections. I changed DB connection from persistent to non-persistent in php and problem solved! Thanks for your help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.