MySQL如何查询Binlog 生成时间

作者:Bing@DBA 时间:2024-01-19 23:34:57 

前言

本篇文章介绍如何查询 Binlog 的生成时间。云上 RDS 有日志管理,但是自建实例没有,该脚本可用于自建实例闪回定位 Binlog 文件。

MySQL如何查询Binlog 生成时间

脚本介绍

直接上代码吧~

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

# -*- coding: utf-8 -*-
import os
import sys
import math
import time
import struct
import argparse

binlog_quer_event_stern = 4
binlog_event_fix_part = 13
table_map_event_fix_length = 8
BINLOG_FILE_HEADER = b'\xFE\x62\x69\x6E'
binlog_event_header_len = 19

class 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_size

if __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 生成时间

来源:https://blog.csdn.net/qq_42768234/article/details/126970988

标签:mysql,Binlog,生成时间
0
投稿

猜你喜欢

  • 基于python实现把json数据转换成Excel表格

    2021-02-20 05:22:04
  • opencv转换颜色空间更改图片背景

    2023-12-20 19:01:29
  • MySQL8数据库安装及SQL语句详解

    2024-01-17 21:25:33
  • ORACLE 回收站当前状态查询整理

    2023-07-14 09:23:01
  • XML入门的常见问题(一)

    2008-09-05 17:20:00
  • Python socket C/S结构的聊天室应用实现

    2023-08-01 05:06:38
  • Python如何读取、写入CSV数据

    2022-02-17 14:03:31
  • Python中常用功能的实现代码分享

    2021-02-25 00:26:08
  • Python字节码与程序执行过程详解

    2022-01-25 04:45:24
  • asp日期时间格式化函数

    2009-12-14 12:56:00
  • pandas重复行删除操作df.drop_duplicates和df.duplicated的区别

    2021-02-13 05:56:36
  • python opencv图片编码为h264文件的实例

    2023-01-12 13:22:07
  • 浅谈PYTHON 关于文件的操作

    2022-06-07 19:54:58
  • Python常用内置函数的使用教程详解

    2021-11-11 21:23:50
  • python将txt文件读入为np.array的方法

    2023-07-23 08:10:29
  • 详解Python中字典的增删改查

    2021-09-14 19:53:34
  • Python多进程通信Queue、Pipe、Value、Array实例

    2023-04-08 03:25:55
  • 设计良好网页的4项原则

    2009-04-24 12:48:00
  • Pycharm最新激活码2019(推荐)

    2023-07-24 20:30:26
  • python实现批量文件重命名

    2021-03-25 22:04:38
  • asp之家 网络编程 m.aspxhome.com