您好,登錄后才能下訂單哦!
小編給大家分享一下mysql怎么避免長事務,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
1、確認是否使用了set autocommit=0。
這個確認工作可以在測試環(huán)境中開展,把 MySQL 的 general_log 開起來,然后隨便跑一個業(yè)務邏輯,通過 general_log 的日志來確認。
2、確認是否有不必要的只讀事務。
有些框架會習慣不管什么語句先用 begin/commit 框起來。有些是業(yè)務并沒有這個需要,但是也把好幾個 select 語句放到了事務中。這種只讀事務可以去掉。
3、業(yè)務連接數據庫的時候,控制每個語句執(zhí)行的最長時間,避免單個語句意外執(zhí)行太長時間。
實例
#!/bin/bash mysql -N -h227.0.0.1 -userver_234 -pserver_234 -P8002 -e "select now(),(unix_timestamp(now()) - unix_timestamp(a.trx_started)) diff_sec,b.id,b.user,b.host,b.db,d.sql_text from information_schema.innodb_trx a inner join information_schema.processlist b on a.trx_mysql_thread_id=b.id and b.command = 'sleep' inner join performance_schema.threads c on b.id = c.processlist_id inner join performance_schema.events_statements_current d on d.thread_id = c.thread_id;" | while read a b c d e f g h do if [ "$c" -gt 30 ] then echo $(date +"%y-%m-%d %h:%m:%s") echo "processid[$d] $e@$f in db[$g] hold transaction time $c sql:$h" fi done >> /tmp/longtransaction.txt
看完了這篇文章,相信你對“mysql怎么避免長事務”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。