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.
|
feedback
|
|
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. | ||||
|
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. | |||
|
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):
| ||||
|
feedback
|
|
Here is my script :
| ||||
|
feedback
|
join-limitsyntax associated per connection and quite a bit you can do in the application. – Travis Gockel Jan 26 '10 at 2:01