Hey guys, it's possible to timeout query in MySQL? So if any query will exceed this timeout, it will be killed by MySQL and it will return error instead of waiting for eternity.

link|improve this question

78% accept rate
To help us answer the question - Are you trying to do this in, or outside, your code? And if you would like an answer for a specific language, which one? – David Jan 26 '10 at 1:58
I don't know any ANSI SQL for that, but I know how to do it in a few consuming applications -- how are they connecting? There is the join-limit syntax associated per connection and quite a bit you can do in the application. – Travis Gockel Jan 26 '10 at 2:01
i'm sorry, i'm stupid, i forgot to specify things. i'm not trying to do this in my code, i wanna know, if it's possible to do this query timeout in mysql self, something like: query runs for 120 seconds, limit is 120 so mysql will kill this query and return some error or something. i've issue with 3rd party code which is nasty and i don't have permission to edit it. i need to kill that query in mysql, not in code. – acheruns Jan 26 '10 at 10:37
feedback

4 Answers

Starting with MySQL 5.1 you can create a stored procedure to query the information_schmea.PROCESSLIST table for all queries that match your criteria for "long running" then iterate over a cursor to kill them. Then setup that procedure to execute on a recurring basis in the event scheduler.

See: http://forge.mysql.com/tools/tool.php?id=106

link|improve this answer
Can something similar be setup for mysql 5.0 or is it 5.1 specific? – Parand Dec 3 '10 at 15:37
feedback

The MySQL forum has some threads about this.

This post details how to set up timeouts on the server using innodb_lock_wait_timeout.

Here's a way to do it programmatically, assuming you're using JDBC.

link|improve this answer
feedback

I just set up the following bash script as a cron job to accomplish this with MySQL 5.0 (kills any query that has been executing for more than 30 seconds). Sharing it here in case it proves useful to anyone (apologies if my bash scripting style is inefficient or atrocious, it is not my primary development language):

#!/bin/bash
linecount=0
processes=$(echo "show processlist" | mysql -uroot -ppassword)
oldIfs=$IFS
IFS='
'
echo "Checking for slow MySQL queries..."
for line in $processes
do
    if [ "$linecount" -gt 0 ]
        then
            pid=$(echo "$line" | cut -f1)
            length=$(echo "$line" | cut -f6)
            query=$(echo "$line" | cut -f8)
            #Id User    Host    db  Command Time    State   Info
            if [ "$length" -gt 30 ]
                then
                    #echo "$pid = $length"
                    echo "WARNING:  Killing query with pid=$pid with total execution time of $length seconds! (query=$query)"
                    killoutput=$(echo "kill query $pid" | mysql -uroot -ppassword)
                    echo "Result of killing $pid:  $killoutput"
            fi
    fi
    linecount=`expr $linecount + 1`
done
IFS=$oldIfs
link|improve this answer
feedback

Here is my script :

mysql -e 'show processlist\G' |\
egrep -b5 'Time: [6-9]{3,10}' |\
grep 'Id:' |\
cut -d':' -f2 |\
grep -v '155' |\ ## Binary Log PID
sed 's/^ //' |\
while read id
do
    mysql -e "kill $id;"
done
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.