The default transaction isolation level for MySQL, MariaDB, and equivalent databases is "REPEATABLE READ". This setting with Drupal can result in deadlocks on tables, resulting in the site becoming very slow or not responding at all.For the best performance and to minimize locking issues, the READ-COMMITTED transaction isolation level is recommended. so how to SET GLOBAL TRANSACTION ISOLATION LEVEL READ COMMITTED?