溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

【Redis】用python操作redis集群

發(fā)布時(shí)間:2020-08-11 08:59:37 來(lái)源:ITPUB博客 閱讀:560 作者:小亮520cl 欄目:關(guān)系型數(shù)據(jù)庫(kù)

https://blog.csdn.net/bitcarmanlee/article/details/51852126

 密碼不能寫到列表中去:

  1. 有密碼 就是這樣 redisconn = StrictRedisCluster(startup_nodes=redis_nodes,password=password)


結(jié)合上一篇文章,改進(jìn)腳本后操作redis-cluster
  1. [root@ip-172-31-47-226 tmp]# more /root/get_nottl.py
  2. # encoding: utf-8
  3. """
  4. author: yangyi@youzan.com
  5. time: 2018/4/26 下午4:34
  6. func: 獲取數(shù)據(jù)庫(kù)中沒有設(shè)置ttl的 key
  7. """
  8. import redis
  9. import argparse
  10. import time
  11. import sys
  12. import rediscluster

  13. class ShowProcess:
  14.     """
  15.     顯示處理進(jìn)度的類
  16.     調(diào)用該類相關(guān)函數(shù)即可實(shí)現(xiàn)處理進(jìn)度的顯示
  17.     """
  18.     i = 0 # 當(dāng)前的處理進(jìn)度
  19.     max_steps = 0 # 總共需要處理的次數(shù)
  20.     max_arrow = 50 # 進(jìn)度條的長(zhǎng)度

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

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

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


  42. def check_ttl(redis_conn, no_ttl_file, dbindex):
  43.     start_time = time.time()
  44.     no_ttl_num = 0
  45.     allkey = redis_conn.dbsize()
  46.     keys_num = sum(list(set(allkey.values())))
  47.     print "key分布如下:",allkey
  48.     print "there are {num} keys in db {index} ".format(num=keys_num, index=dbindex)
  49.     process_bar = ShowProcess(keys_num)
  50.     with open(no_ttl_file, 'a') as f:

  51.         for key in redis_conn.scan_iter(count=10):
  52.             process_bar.show_process()
  53.             if redis_conn.ttl(key) == -1:
  54.                 no_ttl_num += 1
  55.                 if no_ttl_num < 10000:
  56.                     f.write(key+'\n')
  57.             else:
  58.                 continue

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


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

  75.     for index in db_list:
  76.         try:
  77.             startup_nodes = [{"host": "172.31.47.226", "port": port,"db":index}]
  78.             r = rediscluster.StrictRedisCluster(startup_nodes=startup_nodes, password=pwd)
  79.         except Exception, e:
  80.             print e
  81.         else:
  82.             no_ttl_keys_file = "/tmp/{port}_{db}_no_ttl_keys.txt".format(port=port, db=index)
  83.             check_ttl(r, no_ttl_keys_file, index)


  84. if __name__ == '__main__':
  85.     main()





向AI問(wèn)一下細(xì)節(jié)
推薦閱讀:
  1. redis集群安裝
  2. redis集群

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI