Skip to content

Instantly share code, notes, and snippets.

@selfish
Last active November 5, 2015 18:00
Show Gist options
  • Save selfish/d734b1fc61c2351b15f2 to your computer and use it in GitHub Desktop.
Save selfish/d734b1fc61c2351b15f2 to your computer and use it in GitHub Desktop.
Investigate performance and kill sleeping connections
SELECT *
FROM information_schema.processlist;
SELECT concat('KILL ',id,';')
FROM information_schema.processlist
WHERE COMMAND = 'Sleep';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment