文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

MySQL怎么查询Binlog生成时间

2023-07-05 14:13

关注

这篇文章主要介绍“MySQL怎么查询Binlog生成时间”,在日常操作中,相信很多人在MySQL怎么查询Binlog生成时间问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”MySQL怎么查询Binlog生成时间”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

脚本介绍

直接上代码吧~

通过读取 Binlog FORMAT_DESCRIPTION_EVENT header 时间戳来实现读取 Binlog 生产时间。

# -*- coding: utf-8 -*-import osimport sysimport mathimport timeimport structimport argparsebinlog_quer_event_stern = 4binlog_event_fix_part = 13table_map_event_fix_length = 8BINLOG_FILE_HEADER = b'\xFE\x62\x69\x6E'binlog_event_header_len = 19class BinlogTimestamp(object):    def __init__(self, index_path):        self.index_path = index_path    def main(self):        binlog_info_list = list()        for file_path in self.reed_index_file():            result = self.read_binlog_pos(file_path)            binlog_info_list.append({                'file_name': result[0],                'binlog_size': result[2],                'start_time': result[1]            })        # print        i = 0        while len(binlog_info_list) > i:            if i + 1 == len(binlog_info_list):                end_time = 'now'            else:                end_time = binlog_info_list[i + 1]['start_time']            binlog_info_list[i]['end_time'] = end_time            print(binlog_info_list[i])            i += 1    def read_binlog_pos(self, binlog_path):        binlog_file_size = self.bit_conversion(os.path.getsize(binlog_path))        file_name = os.path.basename(binlog_path)        with open(binlog_path, 'rb') as r:            # read BINLOG_FILE_HEADER            if not r.read(4) == BINLOG_FILE_HEADER:                print("Error: Is not a standard binlog file format.")                sys.exit(0)            # read binlog header FORMAT_DESCRIPTION_EVENT            read_byte = r.read(binlog_event_header_len)            result = struct.unpack('=IBIIIH', read_byte)            type_code, event_length, event_timestamp, next_position = result[1], result[3], result[0], result[4]            binlog_start_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(event_timestamp))        return file_name, binlog_start_time, binlog_file_size    def reed_index_file(self):        """        读取 mysql-bin.index 文件        select @@log_bin_index;        :return:        """        with open(self.index_path) as r:            content = r.readlines()        return [x.replace('\n', '') for x in content]    @staticmethod    def bit_conversion(size, dot=2):        size = float(size)        if 0 <= size < 1:            human_size = str(round(size / 0.125, dot)) + ' b'        elif 1 <= size < 1024:            human_size = str(round(size, dot)) + ' B'        elif math.pow(1024, 1) <= size < math.pow(1024, 2):            human_size = str(round(size / math.pow(1024, 1), dot)) + ' KB'        elif math.pow(1024, 2) <= size < math.pow(1024, 3):            human_size = str(round(size / math.pow(1024, 2), dot)) + ' MB'        elif math.pow(1024, 3) <= size < math.pow(1024, 4):            human_size = str(round(size / math.pow(1024, 3), dot)) + ' GB'        elif math.pow(1024, 4) <= size < math.pow(1024, 5):            human_size = str(round(size / math.pow(1024, 4), dot)) + ' TB'        elif math.pow(1024, 5) <= size < math.pow(1024, 6):            human_size = str(round(size / math.pow(1024, 5), dot)) + ' PB'        elif math.pow(1024, 6) <= size < math.pow(1024, 7):            human_size = str(round(size / math.pow(1024, 6), dot)) + ' EB'        elif math.pow(1024, 7) <= size < math.pow(1024, 8):            human_size = str(round(size / math.pow(1024, 7), dot)) + ' ZB'        elif math.pow(1024, 8) <= size < math.pow(1024, 9):            human_size = str(round(size / math.pow(1024, 8), dot)) + ' YB'        elif math.pow(1024, 9) <= size < math.pow(1024, 10):            human_size = str(round(size / math.pow(1024, 9), dot)) + ' BB'        elif math.pow(1024, 10) <= size < math.pow(1024, 11):            human_size = str(round(size / math.pow(1024, 10), dot)) + ' NB'        elif math.pow(1024, 11) <= size < math.pow(1024, 12):            human_size = str(round(size / math.pow(1024, 11), dot)) + ' DB'        elif math.pow(1024, 12) <= size:            human_size = str(round(size / math.pow(1024, 12), dot)) + ' CB'        else:            raise ValueError('bit_conversion Error')        return human_sizeif __name__ == '__main__':    file_name = sys.argv[1]    bt = BinlogTimestamp(file_name)    bt.main()

使用案例

1. 查询 binlog index 文件

MySQL怎么查询Binlog生成时间

2. 使用脚本查询时间

脚本上传到 MySQL 服务器后,指定 binlog index 文件位置即可:

python check_bintime.py /data/mysql_57/logs/mysql-bin.index

MySQL怎么查询Binlog生成时间

MySQL怎么查询Binlog生成时间

到此,关于“MySQL怎么查询Binlog生成时间”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯