91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

【Redis】獲取沒有設置ttl的key腳本

發布時間:2020-08-17 23:55:30 來源:ITPUB博客 閱讀:202 作者:小亮520cl 欄目:關系型數據庫

一 前言 

     在運維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()
【Redis】獲取沒有設置ttl的key腳本

【Redis】獲取沒有設置ttl的key腳本

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




向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

卢龙县| 宜宾市| 辽阳县| 酒泉市| 许昌县| 元谋县| 永平县| 梅河口市| 永康市| 信丰县| 固阳县| 闻喜县| 连南| 长宁县| 宁安市| 耿马| 惠水县| 休宁县| 女性| 宜川县| 济源市| 个旧市| 通化市| 修水县| 陇南市| 乾安县| 镇江市| 云阳县| 肥乡县| 宁强县| 葵青区| 固原市| 永平县| 忻城县| 海宁市| 政和县| 永兴县| 屏南县| 乌兰察布市| 洛浦县| 雷波县|