Summary
Given an event that calls a stored procedure, what's the best practice to ensure that only one instance of the procedure is running at a time? Specifically in cases where the procedure may sometimes take longer to run than it takes for the event to tick over.
Example
Let's take the following fabricated example, an event that takes 1 second to tick over and a procedure that takes 5 seconds to execute:
Procedure:
DELIMITER ;;
CREATE PROCEDURE `P_wait`()
BEGIN
SELECT SLEEP(5);
END;;
DELIMITER ;
Event:
DROP EVENT IF EXISTS `E_wait`;
DELIMITER ;;
CREATE EVENT `E_wait`
ON SCHEDULE
EVERY 1 SECOND
DO
BEGIN
CALL `P_wait`(); //proc_call
END;;
DELIMITER ;
As you would expect, when the event is running you will see 5 instances of SLEEP()
in the PROCESSLIST
:
mysql> SHOW PROCESSLIST;
+-------+------+-----------+-------+---------+------+-------------+------------------+
| Id | User | Host | db | Command | Time | State | Info |
+-------+------+-----------+-------+---------+------+-------------+------------------+
| 27045 | root | localhost | temp | Query | 0 | NULL | SHOW PROCESSLIST |
| 27069 | root | localhost | temp | Connect | 4 | User sleep | SELECT SLEEP(5) |
| 27070 | root | localhost | temp | Connect | 3 | User sleep | SELECT SLEEP(5) |
| 27072 | root | localhost | temp | Connect | 2 | User sleep | SELECT SLEEP(5) |
| 27073 | root | localhost | temp | Connect | 1 | User sleep | SELECT SLEEP(5) |
| 27074 | root | localhost | temp | Connect | 0 | User sleep | SELECT SLEEP(5) |
+-------+------+-----------+-------+---------+------+-------------+------------------+
While it's not the case in this example, you can see how if the procedure was blocking (like if it contained a transaction with a SELECT ... FOR UPDATE
Statement) this would quickly escalate into problems.
Question
What's the best way of ensuring that when E_wait
ticks over each second, that if an instance of P_wait
is still running, it won't get called again? I only ever want at most one instance of P_wait
running at a time. What's the Best Practice here?
Basically what would I need to put in place of /*PROCEDURE_NOT_RUNNING*/
if I modified the Event as follows:
...
BEGIN
IF /*PROCEDURE_NOT_RUNNING*/ THEN
CALL wait_test(); //proc_call
END IF;
END;;
...
- Altering the event from within the procedure (disabling
E_wait
at the beginning ofP_wait
and re-enabling it at the end) is not an option, since that could result in the event not running at all if the server restarts while it is disabled. - I could try storing a value in a table and using that to figure out if the procedure was still running, but that seems to cary the same problem of potentially locking up if the server stops running at exactly the wrong time.
- The whole point of this discussion is that the procedure could take an arbitrarily long time to execute, so just changing the Event schedule to 5 seconds is not acceptable :P
Desired Result
To run the above event, and only ever see at most one instance of SELECT SLEEP(5)
in SHOW PROCESSLIST
.