I would like to temporarily lock a table to prevent other concurrent processes from making changes to it. The reason for this is that this table is going to be copied to a temp table, altered, and then copied back (well original is actually dropped and new table is renamed). Then after all this is complete, I want to unlock the table and hopefully have anything that was attempted during the lock resume.
I also need to be able to read from the table that has been locked to build the new table.
Here is what I tried, but it doesn’t appear to work.
$mysqli = new mysqli(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME, DB_PORT);
$mysqli->autocommit(false)
// create a table to hold parts to keep
$q1 = "CREATE TABLE new_table LIKE my_table;";
$res1 = $mysqli ->query($q1);
// Lock table to avoid concurrent update issues
$q2 = "LOCK TABLE my_table WRITE;";
$res2 = $mysqli ->query($q2);
// Insert data to keep into new table
$q3 = "INSERT INTO new_table SELECT * FROM my_table WHERE some_id IN (SELECT ID FROM table2)";
$res3 = $mysqli ->query($q3);
// drop original table
$q4 = "DROP TABLE my_table;";
$res4 = $mysqli ->query($q4);
// rename new table
$q5 = "RENAME TABLE new_table TO my_table;";
$res5 = $mysqli ->query($q5);
$mysqli ->commit(); // commit changes and re-enable autocommit
$q = "UNLOCK TABLES;";
$res = $mysqli ->query($q);
To test, using PHPmyadmin, I’ve issued the “SET AUTOCOMMIT=0; LOCK TABLE my_table WRITE;” query and then tried to delete something from my_table and I was able to do so. I want to block this. Also, after issuing the lock statement, the rest of the procedure fails and nothing is altered.
Sorry for the long answer, but this will need to be answered in multiple parts.
1. On locking InnoDB tables with
LOCK TABLESin generalUsing
LOCK TABLESwith InnoDB does in fact work, and can be demonstrated with two instances of the MySQL CLI connected to the same server (denoted bymysql-1andmysql-2) in the below example. It should generally be avoided in any sort of production context because of the impact to clients, but sometimes it can be the only option.Create a table and populate it with some data:
Lock the table:
Try to insert from
mysql-2, which will hang waiting on the lock:Now unlock the table from
mysql-1:And finally
mysql-2unblocks and returns:2. Using phpMyAdmin for testing
Your testing method using phpMyAdmin is invalid because phpMyAdmin does not maintain a persistent connection to the server between queries from its web interface. In order to use any sort of locking
LOCK TABLES,START TRANSACTION, etc., you need to maintain a connection while the locks are held.3. Locking all tables needed during work
The way that MySQL locks tables, once you have used
LOCK TABLESto explicitly lock anything, you will not be able to access any other tables that were not locked explicitly during theLOCK…UNLOCKsession. In your above example, you need to use:(I am assuming
table2used in the subselect was not a typo.)4. Atomic table swap using
RENAME TABLEAdditionally, I should note that replacing the existing table using
DROP TABLEfollowed byRENAME TABLEwill cause a brief moment where the table does not exist, and this may confuse clients that expect it to exist. It is generally much better to do:This will perform an atomic swap of the two tables.