when i use bigkeys command to analysis the big value keys in my clustered redis, i got this hint message , i tried to got the type of that key ,it returned "MOVED 14946 10.xx.xx.xx:7001" ,not a string or list etc. ,i can not get the value of that key. the redis version is 3.0.7 . I hope i can get the reason here,thanks.
Comment From: hwware
Hello, the moved error you saw here because the key was handled by another node in cluster, this error tells clients to redirect to the correct node which handled this key, if you use the cluster mode of redis cli,(putting -c when you start cli) you should not see this error then.
Comment From: imsupercoder
I find the reason this week by looing into the exact slot,some clients use jdkserializer to serilize the key,then you can see that key begins with ’\xac’,redis-cli cannot read the correct key ,so it turns into the moved error.