在上一篇文章里我们写了如何针对InnoDB清理空闲事务《如何杀掉数据库空闲事务》,在@sleebin9的提示下,这个功能不仅可以针对InnoDB,也可以用于所有MySQL的事务引擎。
如何在Server层实现呢,sql/sql_parse.cc的do_command()函数是个好函数,连接线程会循环调用do_command()来读取并执行命令,在do_command()函数中,会调用my_net_set_read_timeout(net, thd->variables.net_wait_timeout)来设置线程socket连接超时时间,于是在这里可以下手。
主要代码:
830 /* 831 This thread will do a blocking read from the client which 832 will be interrupted when the next command is received from 833 the client, the connection is closed or “net_wait_timeout” 834 number of seconds has passed 835 */ 836 /* Add For Kill Idle Transaction By P.Linux */ 837 if (thd->active_transaction()) 838 { 839 if (thd->variables.trx_idle_timeout > 0) 840 { 841 my_net_set_read_timeout(net, thd->variables.trx_idle_timeout); 842 } else if (thd->variables.trx_readonly_idle_timeout > 0 && thd->is_readonly_trx) 843 { 844 my_net_set_read_timeout(net, thd->variables.trx_readonly_idle_timeout); 845 } else if (thd->variables.trx_changes_idle_timeout > 0 && !thd->is_readonly_trx) 846 { 847 my_net_set_read_timeout(net, thd->variables.trx_changes_idle_timeout); 848 } else { 849 my_net_set_read_timeout(net, thd->variables.net_wait_timeout); 850 } 851 } else { 852 my_net_set_read_timeout(net, thd->variables.net_wait_timeout); 853 } 854 /* End */ |
大家看明白了吗?其实这是偷梁换柱,本来在这里是要设置wait_timeout的,先判断线程是不是在事务里,就可以转而实现空闲事务的超时。
trx_idle_timeout 控制所有事务的超时,优先级最高
trx_changes_idle_timeout 控制非只读事务的超时
trx_readonly_idle_timeout 控制只读事务的超时
效果:
root@localhost : (none) 08:39:49> set autocommit = 0 ; Query OK, 0 rows affected (0.00 sec) root@localhost : (none) 08:39:56> set trx_idle_timeout = 5; Query OK, 0 rows affected (0.00 sec) root@localhost : (none) 08:40:17> use perf Database changed root@localhost : perf 08:40:19> insert into perf (info ) values(’11’); Query OK, 1 row affected (0.00 sec) root@localhost : perf 08:40:26> select * from perf; ERROR 2006 (HY000): MySQL server has gone away No connection. Trying to reconnect… Connection id: 6 Current database: perf +—-+——+ | id | info | +—-+——+ | 7 | aaaa | | 9 | aaaa | | 11 | aaaa | +—-+——+ 3 rows in set (0.00 sec) |
完整的patch这里下载:
我们一直都在努力坚持原创.......请不要一声不吭,就悄悄拿走。
我原创,你原创,我们的内容世界才会更加精彩!
【所有原创内容版权均属TechTarget,欢迎大家转发分享。但未经授权,严禁任何媒体(平面媒体、网络媒体、自媒体等)以及微信公众号复制、转载、摘编或以其他方式进行使用。】
微信公众号
TechTarget
官方微博
TechTarget中国
作者
相关推荐
-
2017年5月数据库流行度排行榜 MySQL与Oracle“势均力敌”
数据库知识网站DB-engines.com最近更新了2017年5月的数据库流行榜单。TechTarget继续与您一起分享最新的榜单情况。
-
2017年3月数据库流行度排行榜 Oracle卫冕之路困难重重
时隔一个月,数据库市场经过一轮“洗牌”,旧的市场格局是否会被打破,曾经占巨大市场份额的企业是否可能失去优势?
-
2017年2月数据库流行度排行榜 攻城容易守城难
2016年下半年,数据库排行榜的前二十名似乎都“固守阵地”,在排名上没有太大的变动。随着2017年的悄然而至,数据库的排名情况是否会有新的看点?
-
MySQL管理特性:让企业适合交易平台
当Alexander Culiniac和他的同事在TickTrade系统公司建立一个基于云的交易平台时,面临一些基本的约束。那就是,系统必须在云上工作良好并且经济实用。