真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mysql怎么避免長事務(wù)

小編給大家分享一下MySQL怎么避免長事務(wù),希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供大通網(wǎng)站建設(shè)、大通做網(wǎng)站、大通網(wǎng)站設(shè)計、大通網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、大通企業(yè)網(wǎng)站模板建站服務(wù),10多年大通做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。

1、確認是否使用了set autocommit=0。

這個確認工作可以在測試環(huán)境中開展,把 MySQL 的 general_log 開起來,然后隨便跑一個業(yè)務(wù)邏輯,通過 general_log 的日志來確認。

2、確認是否有不必要的只讀事務(wù)。

有些框架會習慣不管什么語句先用 begin/commit 框起來。有些是業(yè)務(wù)并沒有這個需要,但是也把好幾個 select 語句放到了事務(wù)中。這種只讀事務(wù)可以去掉。

3、業(yè)務(wù)連接數(shù)據(jù)庫的時候,控制每個語句執(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怎么避免長事務(wù)”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


網(wǎng)站欄目:mysql怎么避免長事務(wù)
文章路徑:http://weahome.cn/article/jgcspo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部