Commit c6f269df authored by 郭羽's avatar 郭羽

get redis keys test

parent 858c00c8
...@@ -13,7 +13,7 @@ def getRedisConn1(): ...@@ -13,7 +13,7 @@ def getRedisConn1():
return conn return conn
def getRedisConn2(): def getRedisConn2():
pool = redis.ConnectionPool(host="172.16.40.173",password="ReDis!GmTx*0aN9",port=6379,db=0) pool = redis.ConnectionPool(host="172.16.50.145",password="ReDis!GmTx*0aN9",port=6379,db=0)
conn = redis.Redis(connection_pool=pool) conn = redis.Redis(connection_pool=pool)
return conn return conn
......
...@@ -14,7 +14,7 @@ def getRedisConn1(): ...@@ -14,7 +14,7 @@ def getRedisConn1():
return conn return conn
def getRedisConn2(): def getRedisConn2():
pool = redis.ConnectionPool(host="172.16.40.173",password="ReDis!GmTx*0aN9",port=6379,db=0) pool = redis.ConnectionPool(host="172.16.50.145",password="ReDis!GmTx*0aN9",port=6379,db=0)
conn = redis.Redis(connection_pool=pool) conn = redis.Redis(connection_pool=pool)
return conn return conn
...@@ -181,7 +181,7 @@ def redis4(): ...@@ -181,7 +181,7 @@ def redis4():
break break
print(key,key_sum) print(key,key_sum)
nodes = ['7877da182171e313bc9326729f82999d1b629c79' nodes = ['7877da182171e313bc9326729f82999d1b629c79'
, 'a4d4034faa81b935c2fd583053105b37f1c92ff1' , 'a4d4034faa81b935c2fd583053105b37f1c92ff1'
, 'a8835d4c987847302bac66c5fc17ee1faae91fa3' , 'a8835d4c987847302bac66c5fc17ee1faae91fa3'
, '5a48236679f22637508651530633c9cc2f56f489' , '5a48236679f22637508651530633c9cc2f56f489'
...@@ -189,12 +189,12 @@ def redis4(): ...@@ -189,12 +189,12 @@ def redis4():
, 'eec89d7480980749c998add484e80f23fe5022a4' , 'eec89d7480980749c998add484e80f23fe5022a4'
, 'f3f1ec6df458a5093c31663517a3cadaed5ab29c' , 'f3f1ec6df458a5093c31663517a3cadaed5ab29c'
, 'd35c630aad0a8b7f579bf4100f2860401b5d4f52'] , 'd35c630aad0a8b7f579bf4100f2860401b5d4f52']
conn = getRedisConn4() conn = getRedisConn4()
num = 0 num = 0
key_sum = 0 key_sum = 0
res = {} res = {}
keys_set = set() keys_set = set()
for node in nodes: for node in nodes:
cursor = "0" cursor = "0"
while True: while True:
cursor, data = conn.execute_command("scan {} match {} count {} {}".format(cursor, "*", 10000, node)) cursor, data = conn.execute_command("scan {} match {} count {} {}".format(cursor, "*", 10000, node))
...@@ -212,7 +212,6 @@ def redis4(): ...@@ -212,7 +212,6 @@ def redis4():
end = key.split(":")[-1] end = key.split(":")[-1]
keys_set.add(key[0:len(key)-len(end)]) keys_set.add(key[0:len(key)-len(end)])
keys.append(key) keys.append(key)
key_sum += len(data) key_sum += len(data)
print("node:{},curor:{},key_sum:{},keys size:{}".format(node,str(cursor), str(key_sum), str(len(keys_set)))) print("node:{},curor:{},key_sum:{},keys size:{}".format(node,str(cursor), str(key_sum), str(len(keys_set))))
if cursor == "0": if cursor == "0":
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment