Lettuce: Connection to xxx not allowed. This partition is not known in the cluster view.
Posted 杨博东的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lettuce: Connection to xxx not allowed. This partition is not known in the cluster view.相关的知识,希望对你有一定的参考价值。
报错内容
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
以上是关于Lettuce: Connection to xxx not allowed. This partition is not known in the cluster view.的主要内容,如果未能解决你的问题,请参考以下文章
Lettuce: Connection to xxx not allowed. This partition is not known in the cluster view.
使用git往github上提交代码时出现[packet_write_wait connection to xx.xx.xx.xx Broken pipe]错误的解决办法
connect to host github.com port 22: Connection refused
搭建redis完成后项目无法连接[nested exception is io.lettuce.core.RedisConnectionException: Unable to connect ]