赞
踩
Springboot项目在单redis切换到集群redis的时候报错:
io.lettuce.core.cluster.PartitionSelectorException: Cannot determine a partition to read for slot 10089.
自然是集群redis的节点有问题,需要重新刷新一下节点的信息,大部分情况需要修理一下。
#节点检查,每个节点都进行检查
./redis-cli --cluster check xxx.xxx.xxx.xxx:6379 -a 123456
#节点修复,建议每个节点都进行修复
./redis-cli --cluster fix xxx.xxx.xxx.xxx:6379 -a 123456
节点修复过程中会弹出如下确认信息:
Fix these slots by covering with a random node? (type 'yes' to accept):
输入yes重新分配slots即可。
如果第三步如果并没有解决的话,就需要接入每个节点进行重置之后再试。
#清理重置每个节点
#连接节点
./redis-cli -h 10.19.128.135 -p 6380
#密码授权
auth 123456
#设置可写(非必要)
config set slave-read-only no
#清理并重置节点
flushall
cluster reset
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。