MySQL中的查询和事务大小
原文英文,约800词,阅读约需3分钟。发表于: 。Some times it’s important to know the size of a transaction, especially when you plan to migrate to a HA solution where by default transactions have a limited size to guarantee an optimal behavior...
本文介绍了查询MySQL事务大小的方法,分为生成数据和只读数据两类。通过解析二进制日志或查询binlog事件,可以获取DML事务大小信息。通过计算服务器发送到客户端的字节数,可以确定SELECT的大小。MySQL提供了Performance_Schema和二进制日志等多种信息来检索事务大小。