gpt4 book ai didi

java - Spring Data Redis JedisConnectionException : Unexpected end of stream 错误

转载 作者:IT王子 更新时间:2023-10-29 06:08:55 24 4
gpt4 key购买 nike

Redis 3.0.5
Spring Data Redis 1.3.6
绝地武士 2.6.3
- 我们的 Web 应用程序通过发布/订阅从 Redis 接收数据。
- 还以键/值对的形式在 Redis 上执行数据读/写操作。
- 读/写发生在监听线程、独立监控线程和http请求线程。
- 我们为 Listener 和 redis 模板使用了相同的连接工厂
- 我们的 redis 服务器配置了“timeout=30”

<bean id="jedisConnectionFactory"
class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
<property name="hostName" value="nnnn"></property>
<property name="port" value="nnnn"></property>
<property name="password" value="****"></property>
</bean>
<bean id="redisTemplate" class="org.springframework.data.redis.core.StringRedisTemplate">
<property name="connectionFactory" ref="jedisConnectionFactory" />
</bean>
<bean id="redisContainer"
class="org.springframework.data.redis.listener.RedisMessageListenerContainer">
<property name="connectionFactory" ref="jedisConnectionFactory" />
<property name="messageListeners">
<map>
<entry key-ref="messageListener">
<bean class="org.springframework.data.redis.listener.ChannelTopic">
<constructor-arg value="topic_name" />
</bean>
</entry>
</map>
</property>
<property name="taskExecutor" ref="redisTaskExecutor" />
<property name="subscriptionExecutor" ref="redisSubTaskExecutor" />
</bean>
<bean id="redisTaskExecutor"
class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor">
<property name="threadNamePrefix" value="RedisListenerThread"></property>
<property name="corePoolSize" value="1" />
<property name="maxPoolSize" value="1" />
</bean>
<bean id="redisSubTaskExecutor"
class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor">
<property name="threadNamePrefix" value="RedisSubscribeThread"></property>
<property name="corePoolSize" value="1" />
<property name="maxPoolSize" value="1" />
</bean>
<bean id="messageListener"
class="org.springframework.data.redis.listener.adapter.MessageListenerAdapter">
<constructor-arg index="0">
<bean class="my.data.Receiver" />
</constructor-arg>
<constructor-arg index="1"><value>receive</value></constructor-arg>
</bean>

偶尔我们在数据读取过程中会遇到以下生产问题。

org.springframework.data.redis.RedisConnectionFailureException: Unexpected end of stream.; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Unexpected end of stream. at org.springframework.data.redis.connection.jedis.JedisExceptionConverter.convert(JedisExceptionConverter.java:47) at org.springframework.data.redis.connection.jedis.JedisExceptionConverter.convert(JedisExceptionConverter.java:36) at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:37) at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:37) at org.springframework.data.redis.connection.jedis.JedisConnection.convertJedisAccessException(JedisConnection.java:182) at org.springframework.data.redis.connection.jedis.JedisConnection.get(JedisConnection.java:1087) at org.springframework.data.redis.connection.DefaultStringRedisConnection.get(DefaultStringRedisConnection.java:276) at org.springframework.data.redis.core.DefaultValueOperations$1.inRedis(DefaultValueOperations.java:46) at org.springframework.data.redis.core.AbstractOperations$ValueDeserializingRedisCallback.doInRedis(AbstractOperations.java:50) at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:190) at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:152) at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:84) at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:43)

我读过其他讨论使用单线程进行读/写的线程。但是在我们的例子中很难使用单线程。同样根据 RedisTemplate 文档,它是线程安全的。这个问题是偶然的,我们无法在任何开发/测试/uat 环境中重现。因此无法找到相同的确切原因。我们做错了什么?

最佳答案

我们已经能够重现该问题,原因是 Redis 中的“timeout=30”设置。

场景

  1. 连接空闲 30 秒,Redis 终止连接。
  2. 在应用程序中的“Redis 连接工厂”检测到损坏之前连接,它获得读取或写入请求的分配
  3. 代码尝试使用此连接,但由于它已断开,因此无法发送读/写命令。因此我们得到“JedisConnectionException:流的意外结束”异常

解决方案

  1. 将 Redis 超时设置为零
  2. 使用自定义 JedisPoolConfig 集minEvictableIdleTimeMillis 到所需的值。这将确保空闲连接从Jedis连接池中释放

关于java - Spring Data Redis JedisConnectionException : Unexpected end of stream 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44626474/

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