博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
长话短说mysql slow log的query time
阅读量:6689 次
发布时间:2019-06-25

本文共 1630 字,大约阅读时间需要 5 分钟。

1

当时MySQL卡顿的时间只有62s,为什么这个时间却是427553s?

先看下慢日志:

# Time: 160601 15:09:52# User@Host: slave[slave] @  [10.236.232.132]  Id: 5668740# Query_time: 427536.674791  Lock_time: 0.000000 Rows_sent: 0  Rows_examined: 0SET timestamp=1464764992;# administrator command: Binlog Dump;

慢日志的源码在log.cc:

/*  Log a query to the slow log table   SYNOPSIS    log_slow()    thd               THD of the query    current_time      current timestamp    query_start_arg   command start timestamp    user_host         the pointer to the string with user@host info    user_host_len     length of the user_host string. this is computed once                      and passed to all general log event handlers    query_time        Amount of time the query took to execute (in microseconds)    ###查询语句花费的时间,单位:微秒    lock_time         Amount of time the query was locked (in microseconds)    is_command        The flag, which determines, whether the sql_text is a                      query or an administrator command (these are treated                      differently by the old logging routines)    sql_text          the very text of the query or administrator command                      processed    sql_text_len      the length of sql_text string   DESCRIPTION    Log a query to the slow log table   RETURN    FALSE - OK    TRUE - error occured*/....if (thd->start_utime)    {      query_utime= (current_utime - thd->start_utime); #query_utime=当前时间-线程开始时间      lock_utime=  (thd->utime_after_lock - thd->start_utime);    }

所以这个时间就可以解释了,这个binlog dump一共执行了427536.674791s,是正常的,这次记录慢查询的时间是:Time: 160601 15:09:52,因为上一次binlog记入的时间是:# Time: 160527 16:22:34,时间上可以对的上.

转载地址:http://wiuoo.baihongyu.com/

你可能感兴趣的文章
vue-cli —— 项目打包及一些注意事项
查看>>
linux下对/sys/class/gpio中的gpio的控制 (转)
查看>>
ubuntu启动报错 Errors were found while checking the disk-drive for /
查看>>
Django的ModelForm
查看>>
Asp.Net MVC及Web API框架配置会碰到的几个问题及解决方案
查看>>
PHP学习之路(六)
查看>>
【转载】SharpDevelop源码分析(三)插件系统
查看>>
判断点在多边形内
查看>>
[.Net]System.OutOfMemoryException异常
查看>>
思考几个问题
查看>>
[硬件]SICK LMS111激光扫描仪使用
查看>>
awk学习
查看>>
Microsoft Dynamics AX 2012 的安全框架和安全模型
查看>>
【实验吧】逆向rev50
查看>>
2、Spring Cloud - 入门概述
查看>>
1.1 变量
查看>>
mfc 链接时错误 文件函数重复定义
查看>>
php
查看>>
Django 是如何实现用户登录和登出机制的(默认版本-数据库版本)
查看>>
【转】 wpf系列-入门
查看>>