Kill slow mysql queries
A Shell script for killing slow MySQL queries:
#!/bin/sh
# Credentials for a MySQL user with PROCESS, SUPER permissions
USERNAME=
PASSWORD=
# MySQL Server location
HOST=
PORT=3306
TIMEOUT=60 # 1 minute
TARGET_USER= # MySQL user to monitor
MYSQL=”mysql -u $USERNAME –password=$PASSWORD -h $HOST -P $PORT -B”
$MYSQL -N -e ‘SHOW FULL PROCESSLIST’ | cut -f 1,2,6 | awk ‘{ if ($3 > $TIMEOUT && $2 == $TARGET_USER) print “KILL ” $1 “;” }’
Source: https://gist.github.com/paulrosania/2883869
You can set the cron job to do the activity every minutes.
Learn more – How to schedule cron job
Linux Cron Job – Schedule Job in linux: crontab