mysql主從日誌的定期清理

來源:互聯網
上載者:User

 mysql主從的binlog定時刪除是很重要的,一般是通過expire_logs_days = 10來設定binlog保留的天數mysql5.0一下版本不支援),但有時這還不夠,假如有幾天的日誌量非常大,硬碟可能會滿,所以不但要設定保留的天數,還要監控硬碟的空間使用方式。寫了一個指令碼,適合各個版本的mysql,保留3天的日誌,當存放日誌的硬碟使用率超過80%,則保留2天,但至少會保留一天的binlog記錄檔。

 
  1. #!/bin/env python 
  2. # -*- coding: utf-8 -*- 
  3. ############################################################## 
  4. #查看存在binlog的目錄位置並找出3天前的最後一個bin-log檔案名稱字 
  5. #刪除3天以前的binlog檔案,刪除之後data1目錄掛載的硬碟使用率超 
  6. #過的80%的話,繼續刪除2天前的記錄檔,至少保留一天的日誌。 
  7. ############################################################## 
  8.  
  9. import os,sys,time,MySQLdb 
  10.  
  11. def log_w(text): 
  12.     logfile = "/usr/local/zabbix/bin/delet.log" 
  13.     now = time.strftime("%Y-%m-%d %H:%M:%S") 
  14.     tt = now + "\t" + str(text) + "\n" 
  15.     f = open(logfile,'a+') 
  16.     f.write(tt) 
  17.     f.close() 
  18.  
  19. def mysql_conn(port,lastlog,days): 
  20.     try: 
  21.         center_ip = '127.0.0.1' 
  22.         center_user = 'repl_monitor' 
  23.         center_passwd = 'VQMQLGwTaw3k0UV8' 
  24.         sql = "PURGE MASTER LOGS TO '%s';" % lastlog 
  25.         conn = MySQLdb.connect(host = center_ip,port = int(port),user = center_user,passwd = center_passwd,connect_timeout=5) 
  26.         cursor = conn.cursor()  
  27.         cursor.execute(sql) 
  28.         alldata = cursor.fetchall() 
  29.         cursor.close() 
  30.         conn.close() 
  31.         text = "Deltet before %s days binlog,deltet %s before !" % (days,lastlog) 
  32.         log_w(text) 
  33.     except Exception,e: 
  34.         log_w(e) 
  35.  
  36. def find_logdir(): 
  37.     conn = "find / -name binlog|grep -v usr" 
  38.     logdir_list = os.popen(conn).readlines() 
  39.     if len(logdir_list) != 0: 
  40.         for logdir in logdir_list: 
  41.             datadir = logdir.strip().split("/")[1] 
  42.             if "mysql_log" in logdir.strip(): 
  43.                 port = 3306 
  44.             else: 
  45.                 port = logdir.strip().split("/")[3].split("-")[-1] 
  46.             days = 3 
  47.             while 1: 
  48.                 conn = "find %s -mtime %s|sort" % (logdir.strip(),days) 
  49.                 count = os.popen(conn).readlines() 
  50.                 if len(count) != 0: 
  51.                     lastlog = count[-1].strip().split("/")[-1] 
  52.                     mysql_conn(port,lastlog,days) 
  53.  
  54.                 df = "df -h|grep -e '%s$'|awk '{print $5}'|awk -F '%%' '{print $1}'" % datadir 
  55.                 disk = os.popen(df).read().strip() 
  56.                 if not disk: 
  57.                     break 
  58.                 else: 
  59.                     if int(disk) < 80: 
  60.                         break 
  61.                     else: 
  62.                         days = days - 1 
  63.                         if days == 1: 
  64.                             break 
  65.     else: 
  66.         sys.exit() 
  67.  
  68. if __name__ == "__main__": 
  69.     find_logdir() 

 

本文出自 “王偉” 部落格,請務必保留此出處http://wangwei007.blog.51cto.com/68019/1123088

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.