1 Star 0 Fork 739

Evan / Lepus

forked from lyonzhi / Lepus
关闭
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
admin_mysql_purge_binlog.py 2.11 KB
一键复制 编辑 原始数据 按行查看 历史
#!//bin/env python
# coding:utf-8
import os
import sys
import string
import time
import datetime
import pymysql
import include.functions as func
from multiprocessing import Process
def admin_mysql_purge_binlog(host, port, user, passwd, binlog_store_days):
try:
before_n_days = 0
connection = pymysql.connect(host=host, user=user, passwd=passwd, port=int(
port), connect_timeout=2, charset='utf8')
with connection.cursor() as cur:
master_thread = cur.execute(
"select * from information_schema.processlist where COMMAND = 'Binlog Dump'")
if master_thread:
now = datetime.datetime.now()
delta = datetime.timedelta(days=binlog_store_days)
n_days = now-delta
before_n_days = n_days.strftime('%Y-%m-%d %H:%M:%S')
cur.execute("purge binary logs before '{}'".format(before_n_days))
print("mysql {}:{} binlog been purge".format(host, port))
except pymysql.Error as e:
print("Mysql Error %d: %s" % (e.args[0], e.args[1]))
def main():
user = func.get_config('mysql_db', 'username')
passwd = func.get_config('mysql_db', 'password')
servers = func.mysql_query(
"select host,port,binlog_store_days from db_servers_mysql where is_delete=0 and monitor=1 and binlog_auto_purge=1")
if servers:
print("%s: admin mysql purge binlog controller started." %
(time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()),))
plist = []
for row in servers:
host = row[0]
port = row[1]
binlog_store_days = row[2]
p = Process(target=admin_mysql_purge_binlog, args=(
host, port, user, passwd, binlog_store_days))
plist.append(p)
for p in plist:
p.start()
time.sleep(60)
for p in plist:
p.terminate()
for p in plist:
p.join()
print("%s: admin mysql purge binlog controller finished." %
(time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()),))
if __name__ == '__main__':
main()
Python
1
https://gitee.com/likeshe/Lepus.git
git@gitee.com:likeshe/Lepus.git
likeshe
Lepus
Lepus
master

搜索帮助