I got this from my host.................
We are not programmers, so we can't give you exact details on what exact lines/functions need to be changed or modified to avoid this issue in the future, but basically the script at
mycommunity/profile.php is either spawning a ton of child processes of itself, or being requested quite a lot. And the MySQL queries that it's firing off are not being ended properly, and instead just being put "to sleep", awaiting further queries or transactions.
-----------------------------------------------------------------------------------------------------------------------------------------
These could be related, in that the MySQL queries aren't being ended properly, so the PHP process itself doesn't die off when it should have, so when profile.php is requested again, it fires off another PHP process, another batch of MySQL queries, and this repeats again and again.
-----------------------------------------------------------------------------------------------------------------------------------------
If you recently updated the profile.php script, or whatever forum/CMS/program it's associated with, I would recommend starting there, and checking with the developer of that script to see exactly what changed. It could just be a bug in the code causing the MySQL queries to sleep instead of disconnect.
If you recently updated the profile.php script, or whatever forum/CMS/program it's associated with, I would recommend starting there, and checking with the developer of that script to see exactly what changed. It could just be a bug in the code causing the MySQL queries to sleep instead of disconnect.
-----------------------------------------------------------------------------------------------------------------------------------------
Please advise on how to stop this as the system gets a great deal of attention the site has issues because of the above...........when I get a great deal of people on the site and they are using the site it brings it down............can anyone tell me how to end these and not have them sleep, I would assume they need to die?