How do you diagnose PHP-based SQL problems?
-
@nebulon Nope, not custom, it's your Wordpress (Developer) app. You're pointing me in the right direction tho - it's gotta be a plugin that, for some reason, is running its own instance of mysql.
I personally don't get how or why it's 'spawning' the mysql process, waiting a second to say it succeeds and then dies in 5 minutes. 5 minutes must be some kind of timeout and there must be a conflict in the first place that killed mysql.
Also weird that it eventually succeeds too.
-
@girish said in How do you diagnose PHP-based SQL problems?:
Could be getting killed because it's running out of memory. Maybe you can bump the increase the memory limit of mysql service?
That's happened to me before but Cloudron always reports it and I adjust memory. Cloudron is reporting no memory limitations. But just in case, I set it really high IF that is the problem occurring.
-
@nebulon said in How do you diagnose PHP-based SQL problems?:
@lonkle just to be on the same page, since this sounds far out with some plugin spawning a mysql process. The logs you have pasted earlier here, are those from the app or from the mysql service running in your Cloudron?
That is from the my SQL logs. I found out that's why the entire server would stop functioning for 5 minutes at a time - MySQL unexpectedly dies, retries, dies, retries, dies. I know it's gotta be a plugin. When you said it was spawning an SQL process somehow, I just ran with the idea since you're the expert but I realized that you just thought I was showing you app logs.
I'v watched the app logs even during one of the random MySQL deaths, and there's nothing on the logs except normal PHP stuff. I cleaned up all the notices and it still happens. I have ONE lead:
PHP Notice: Undefined offset: 1 in phar:///app/pkg/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php(1197) : eval()'d code on line 70
I don't use the WP-CLI, which means it can only be that the
1 minute
cron job set up that sometimes runs into some huge task. Something is throwing an undefined offset in the Cron anyway. I'm hoping that's it. If I can find it.I'll have to time the next time it happens and see if it aligns with a cron job.
-
Oh, I forgot the
Error reconnecting to the database This means that we lost contact with the database server at mysql:3306. This could mean your hostβs database server is down. Are you sure the database server is running? Are you sure the database server is not under particularly heavy load? If youβre unsure what these terms mean you should probably contact your host. If you still need help you can always visit the WordPress Support Forums
error from Wordpress if you wait till timeout.That's why it was so obvious that the SQL server was going down.
-
Further hunting. There's a plugin called
WP Time Capsule
that provides a "staging" server to test things out before making them live. It just copies the WP DB and files to a folder at the root called "staging" and if "staging is currently activated" and then I I try to backup Cloudron, I get thisCloudron crashed/stopped
.But if I delete the staging folder and DB tables (you just hit delete in the plugin). Then Cloudron backs up fine.
Theories?
-
Okay, looks like if I open 20 backend "edit post" pages in new tabs at once I can kill SQL at will. But...how...and why. I understand it running out of memory, but...wait, what if it runs out of memory and doesn't realize it because of swap and so it doesn't kill itself.