Locking Functions
TiDB supports most of the user-level locking functions available in MySQL 8.0.
Supported functions
MySQL compatibility
- The minimum timeout permitted by TiDB is 1 second, and the maximum timeout is 1 hour (3600 seconds). This differs from MySQL, where both 0 second and unlimited timeouts (
timeout=-1) are permitted. TiDB will automatically convert out-of-range values to the nearest permitted value and converttimeout=-1to 3600 seconds. - TiDB does not automatically detect deadlocks caused by user-level locks. Deadlocked sessions will time out after a maximum of 1 hour, but can also be manually resolved by using
KILLon one of the affected sessions. You can also prevent deadlocks by always acquiring user-level locks in the same order. - Locks take effect on all TiDB servers in the cluster. This differs from MySQL Cluster and Group Replication where locks are local to a single server.
IS_USED_LOCK()returns1if it is called from another session and is unable to return the ID of the process that is holding the lock.