揪出MySQL延迟上千秒的元凶
Part1:写在最前
MySQL的延迟告警想必大家一定不陌生,MySQL引起从库延迟的原因有很多,从硬件上讲可能是网卡,磁盘,内存达到瓶颈,从数据库层面来讲,可能是SQL效率低下,或者大批量写入引起的。本文的案例将剖析一个由binlog格式引发的延迟问题,看完本文,再遇到这类告警的时候,相信你可以瞬间定位到问题所在!
Part2:重点参数分析
binlog_format
--binlog-format=format
System Variablebinlog_format
ScopeGlobal, SessionDynamicYesType(>= 5.5.31-ndb-7.2.13)enumerationType(>= 5.5.15-ndb-7.2.1, <= 5.5.30-ndb-7.2.12)enumerationTypeenumerationDefault(>= 5.5.31-ndb-7.2.13)MIXED
Default(>= 5.5.15-ndb-7.2.1, <= 5.5.30-ndb-7.2.12)STATEMENT
DefaultSTATEMENT
Valid Values(>= 5.5.31-ndb-7.2.13)ROW
STATEMENT
MIXED
ROW
STATEMENT
MIXED
ROW
STATEMENT
MIXED
众所周知,binlog_format是设置binlog格式的参数,我们可以配置为STATEMENT、MIXED、ROW三种格式,可以动态调节。三种格式各有有缺。我们的线上生产库统一配置的是MIXED格式。MIXED格式会在STATEMENT格式和ROW格式中根据场景不同来使用不同的格式进行切换。
mysql>showglobalvariableslike'binlog_format';+---------------+-------+|Variable_name|Value|+---------------+-------+|binlog_format|MIXED|+---------------+-------+1rowinset(0.08sec)
Part3:知识储备
对于MIXED格式来说,在如下情况的时候,binlog会自动转为ROW格式记录
1.NDB引擎
2.SQL语句里包含了UUID()函数。
3.自增长字段被更新了。
4.包含了insert delayed语句。
5.使用了用户定义函数(UDF)。
6.使用了临时表。
7.?还有一种情况会导致mixed格式转换为ROW,本文会加以复现。
Part1:监控
我们看出,在凌晨2点的时候,从库的延迟陡增,而此时从库的机器负载和网卡并未达到瓶颈。
Part2:延迟原因分析
我们可以看出,从2点06起,binlog刷新非常快,基本上几十秒就可以写满一个1.1GB的binlog文件。这样基本就能够确定,是因为写入量过大导致的。
写入量过大又有两种情况:
单纯的业务量激增,QPS增长引起;
binlog转为了ROW格式导致存储内容激增引起。
我们使用pt工具pt-query-digest或者命令行,都能够分析出binlog做了哪些操作。使用pt-query-digest的话可以结合mysqlbinlog命令,对日志进行分析。
Part3:rootcase
delete from tablename where xxxx limit 100;
这种语法会将MIXED格式的binlog,转为ROW格式记录,而笔者案例中的这张表包含TEXT大字段,每次delete都会把整个TEXT大字段带入binlog,进而导致binlog激增,从库追不上主库产生延迟的情况。
Part4:解决办法
根本原因找到后,解决起来就得心应手了,找到相关开发,去掉deletefrom table where xxx limit这种用法,就能够避免row格式的记录。
Warning:警告其实,delete/update limit、insert .....selectlimit这种用法是危险的,很容易产生问题。真的要使用这种这种方法的话,也需要结合order by语句来保证limit的有效性。
遇到此类语句时:
当使用STATEMENT模式时,会发出一个警告,说明语句对于基于语句的复制是不安全的。
当使用STATEMENT模式时,即使它们也有一个ORDER BY子句(因此是确定性的),也会为包含LIMIT的DML语句发出警告。 这是一个已知的问题。 (BUG#42851)
当使用MIXED模式时,语句使用row的模式复制。
Part5:官方文档
WhenrunninginMIXEDloggingformat,theserverautomaticallyswitchesfromstatement-basedtorow-basedloggingunderthefollowingconditions:WhenaDMLstatementupdatesanNDBCLUSTERtable.WhenafunctioncontainsUUID().WhenoneormoretableswithAUTO_INCREMENTcolumnsareupdatedandatriggerorstoredfunctionisinvoked.Likeallotherunsafestatements,thisgeneratesawarningifbinlog_format=STATEMENT.WhenanyINSERTDELAYEDisexecuted.WhenacalltoaUDFisinvolved.Ifastatementisloggedbyrowandthesessionthatexecutedthestatementhasanytemporarytables,loggingbyrowisusedforallsubsequentstatements(exceptforthoseaccessingtemporarytables)untilalltemporarytablesinusebythatsessionaredropped.Thisistruewhetherornotanytemporarytablesareactuallylogged.Temporarytablescannotbeloggedusingrow-basedformat;thus,oncerow-basedloggingisused,allsubsequentstatementsusingthattableareunsafe.Theserverapproximatesthisconditionbytreatingallstatementsexecutedduringthesessionasunsafeuntilthesessionnolongerholdsanytemporarytables.WhenFOUND_ROWS()orROW_COUNT()isused.(Bug#12092,Bug#30244)WhenUSER(),CURRENT_USER(),orCURRENT_USERisused.(Bug#28086)Whenastatementreferstooneormoresystemvariables.(Bug#31168)
可以看出,在官方文档中,何时MIXED格式会转换为ROW格式中,并未提到limit语句会将MIXED格式转换为ROW,国内不少书籍和博客上也未有提及,本文记录这个案例,希望对遇到这个问题和未来可能遇到这个问题的读者能够节省处理时间,尽快定位到根源。
官方文档对于MIXED格式在使用limit语法时转换为ROW格式记录在其他章节,是如下描述的:
Statement-based replication ofLIMIT
clauses inDELETE
,UPDATE
, andINSERT ... SELECT
statements is unsafe since the order of the rows affected is not defined. (Such statements can be replicated correctly with statement-based replication only if they also contain anORDER BY
clause.) When such a statement is encountered:
When usingSTATEMENT
mode, a warning that the statement is not safe for statement-based replication is now issued.
When usingSTATEMENT
mode, warnings are issued for DML statements containingLIMIT
even when they also have anORDER BY
clause (and so are made deterministic). This is a known issue. (Bug #42851)
When usingMIXED
mode, the statement is now automatically replicated using row-based mode.
——总结——
通过这个案例,我们能够了解到什么情况下binlog_format会由MIXED格式转为ROW格式,以及常见的延迟原因和解决办法。由于笔者的水平有限,编写时间也很仓促,文中难免会出现一些错误或者不准确的地方,不妥之处恳请读者批评指正。喜欢笔者的文章,右上角点一波关注,谢谢!
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。