【Redis】獲取沒有設定ttl的key指令碼

小亮520cl發表於2018-05-05

一 前言 

     在運維Redis的時候,總會遇到使用不規範的業務設計,比如沒有對key設定ttl,進而導致記憶體空間吃緊,通常的解決方法是在slave上dump 出來所有的key ,然後對檔案進行遍歷再分析。遇到幾十G的Redis例項,dump + 分析 會是一個比較耗時的操作,為此,我開發了一個小指令碼直接連線Redis 進行scan 遍歷所有的key,然後在檢查key的ttl,將沒有ttl的key輸出到指定的檔案裡面。

二 程式碼實現

  1. # encoding: utf-8
  2. """
  3. author: yangyi@youzan.com
  4. time: 2018/4/26 下午4:34
  5. func: 獲取資料庫中沒有設定ttl的 key
  6. """
  7. import redis
  8. import argparse
  9. import time
  10. import sys


  11. class ShowProcess:
  12.     """
  13.     顯示處理進度的類
  14.     呼叫該類相關函式即可實現處理進度的顯示
  15.     """
  16.     i = 0 # 當前的處理進度
  17.     max_steps = 0 # 總共需要處理的次數
  18.     max_arrow = 50 # 進度條的長度

  19.     # 初始化函式,需要知道總共的處理次數
  20.     def __init__(self, max_steps):
  21.         self.max_steps = max_steps
  22.         self.i = 0

  23.     # 顯示函式,根據當前的處理進度i顯示進度
  24.     # 效果為[>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>]100.00%
  25.     def show_process(self, i = None):
  26.         if i is not None:
  27.             self.i = i
  28.         else:
  29.             self.i += 1
  30.         num_arrow = int(self.i * self.max_arrow / self.max_steps) # 計算顯示多少個'>'
  31.         num_line = self.max_arrow - num_arrow # 計算顯示多少個'-'
  32.         percent = self.i * 100.0 / self.max_steps # 計算完成進度,格式為xx.xx%
  33.         process_bar = '[' + '>' * num_arrow + ' ' * num_line + ']'\
  34.                       + '%.2f' % percent + '%' + '\r' # 帶輸出的字串,'\r'表示不換行回到最左邊
  35.         sys.stdout.write(process_bar) # 這兩句列印字元到終端
  36.         sys.stdout.flush()

  37.     def close(self, words='done'):
  38.         print ''
  39.         print words
  40.         self.i = 0


  41. def check_ttl(redis_conn, no_ttl_file, dbindex):
  42.     start_time = time.time()
  43.     no_ttl_num = 0
  44.     keys_num = redis_conn.dbsize()
  45.     print "there are {num} keys in db {index} ".format(num=keys_num, index=dbindex)
  46.     process_bar = ShowProcess(keys_num)
  47.     with open(no_ttl_file, 'a') as f:

  48.         for key in redis_conn.scan_iter(count=1000):
  49.             process_bar.show_process()
  50.             if redis_conn.ttl(key) == -1:
  51.                 no_ttl_num += 1
  52.                 if no_ttl_num < 1000:
  53.                     f.write(key+'\n')
  54.             else:
  55.                 continue

  56.     process_bar.close()
  57.     print "cost time(s):", time.time() - start_time
  58.     print "no ttl keys number:", no_ttl_num
  59.     print "we write keys with no ttl to the file: %s" % no_ttl_file


  60. def main():
  61.     parser = argparse.ArgumentParser()
  62.     parser.add_argument('-p', type=int, dest='port', action='store', help='port of redis ')
  63.     parser.add_argument('-d', type=str, dest='db_list', action='store', default=0,
  64.                         help='ex : -d all / -d 1,2,3,4 ')
  65.     args = parser.parse_args()
  66.     port = args.port
  67.     if args.db_list == 'all':
  68.         db_list = [i for i in xrange(0, 16)]
  69.     else:
  70.         db_list = [int(i) for i in args.db_list.split(',')]

  71.     for index in db_list:
  72.         try:
  73.             pool = redis.ConnectionPool(host='127.0.0.1', port=port, db=index)
  74.             r = redis.StrictRedis(connection_pool=pool)
  75.         except redis.exceptions.ConnectionError as e:
  76.             print e
  77.         else:
  78.             no_ttl_keys_file = "/tmp/{port}_{db}_no_ttl_keys.txt".format(port=port, db=index)
  79.             check_ttl(r, no_ttl_keys_file, index)


  80. if __name__ == '__main__':
  81.     main()




注意:
    程式碼裡面對沒有ttl的key的輸出做了限制,大家使用的時候可以調整閾值 或者去掉 全部輸出到指定的檔案裡面。歡迎大家使用,並給出功能或者演算法上的改進措施。




來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22664653/viewspace-2153419/,如需轉載,請註明出處,否則將追究法律責任。

相關文章