报错内容
org.springframework.data.redis.RedisSystemException:
Redis exception; nested exception is io.lettuce.core.RedisException: io.lettuce.core.cluster.UnknownPartitionException: Connection to xxx not allowed. This partition is not known in the cluster view.
可能原因
- Lettuce 会在本地维护一份
cluster nodes
返回的信息作为路由表。 - validateClusterNodeMembership 是 Lettuce 一个客户端 option,会检查某命令访问的地址,是否在第1步维护的路由表中,此参数默认值为
true
,即开启检查。 - 当 Lettuce 连接 Redis 集群且没有配置 topologyRefreshOptions 时,意味着路由表变化之后,第1步中的路由表不会更新。
- 但是路由变化时返回的
MOVED xxx xxx
告诉客户端去访问 xxx 新地址,但是因为此地址不在路由表中,第2步的检测就会报错。
建议方法
方法一(推荐):设置topologyRefreshOptions
选项,可参考此处代码。
方法二(不推荐):设置validateClusterNodeMembership
为false
,可临时绕过此检查。
GitHub相关
和 Lettuce 作者关于 Redis 集群返回MOVED
错误之后,是否应该重新获取一次路由表的讨论:https://github.com/lettuce-io/lettuce-core/discussions/2120