gpt4 book ai didi

java - redisson java 客户端能否检测到集群拓扑中失败的主副本对的重启?

转载 作者:可可西里 更新时间:2023-11-01 11:24:01 25 4
gpt4 key购买 nike

我的 Spring boot 应用程序使用 redisson 3.3.0 来访问具有以下 YML 配置的 redis 集群拓扑:

redis:
cluster:
nodes: ${CLUSTER_HOST}:6379
read-mode: 'MASTER'
connections: 125
max_wait_millis: 10000
cluster-scan-interval: 1000

redis 集群设置为默认值(3 个节点,每个节点 1 个副本)。

我停止了包含相同槽(主副本对)的 2 个节点。然后,当我的应用程序尝试从这些插槽中读取键时,正如预期的那样,我得到了这个异常:

org.redisson.client.RedisConnectionException: 
MasterConnectionPool no available Redis entries.
Disconnected hosts: [/${CLUSTER_HOST}:6379]

我想这是正确的,因为在使用 CLUSTER NODES 命令检查我的 redis 节点后,我可以看到这 2 个节点已关闭并且它们的插槽从集群中丢失。

事情是,当我再次启动节点时,我使用 CLUSTER INFO & CLUSTER NODES 检查集群是否已恢复。然而,当我的应用程序试图再次从集群中读取时,我得到了这个 redisson 异常:

    io.netty.util.concurrent.DefaultPromise: 151 - An 
exception was thrown by org.redisson.command.CommandAsyncService$9.operationComplete()
java.lang.NullPointerException: null
at org.redisson.connection.MasterSlaveConnectionManager.connectionReadOp(MasterSlaveConnectionManager.java:731)
at org.redisson.command.CommandAsyncService.async(CommandAsyncService.java:501)
at org.redisson.command.CommandAsyncService.checkAttemptFuture(CommandAsyncService.java:751)
at org.redisson.command.CommandAsyncService.access$300(CommandAsyncService.java:80)
at org.redisson.command.CommandAsyncService$9.operationComplete(CommandAsyncService.java:610)
at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:512)
at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:505)
at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:484)
at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:425)
at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:122)
at org.redisson.misc.RedissonPromise.tryFailure(RedissonPromise.java:98)
at org.redisson.client.protocol.CommandData.tryFailure(CommandData.java:78)
at org.redisson.client.handler.CommandDecoder.decode(CommandDecoder.java:247)
at ...

每次我的应用程序尝试读取或写入那些特定的插槽(意味着特定的主副本对)时,我都会收到这个消息,尽管 redis 集群没问题。

Redisson 似乎无法检索特定主副本对的正确状态。

这可能是配置问题,还是默认行为?

最佳答案

此问题已在 3.5.4 版本中修复。

关于java - redisson java 客户端能否检测到集群拓扑中失败的主副本对的重启?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53703998/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com