redis JedisConnectionException:意外的流结束错误

cotxawn7  于 2023-08-02  发布在  Redis
关注(0)|答案(4)|浏览(124)

我正在尝试执行rpush操作,遇到以下错误:

redis.clients.jedis.exceptions.JedisConnectionException: Unexpected end of stream.
    at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:199) ~[jedis-2.9.0.jar:na]
    at redis.clients.util.RedisInputStream.readByte(RedisInputStream.java:40) ~[jedis-2.9.0.jar:na]
    at redis.clients.jedis.Protocol.process(Protocol.java:151) ~[jedis-2.9.0.jar:na]
    at redis.clients.jedis.Protocol.read(Protocol.java:215) ~[jedis-2.9.0.jar:na]
    at redis.clients.jedis.Connection.readProtocolWithCheckingBroken(Connection.java:340) ~[jedis-2.9.0.jar:na]
    at redis.clients.jedis.Connection.getIntegerReply(Connection.java:265) ~[jedis-2.9.0.jar:na]
    at redis.clients.jedis.Jedis.rpush(Jedis.java:865) ~[jedis-2.9.0.jar:na]
    at

字符串
有没有办法解决这个错误?

iaqfqrcu

iaqfqrcu1#

原因是服务器设置超时非零,这意味着在一个周期后连接被丢弃或关闭。所以客户端从池中获取连接,但在此之后它就无效了!
解决方案是:设置服务器的超时时间为0或不要在客户端上保留池-> GenericObjectPoolConfig.setMaxIdle(0)因此每次连接服务器时,客户端都会从池中获取一个新的连接,而不是旧的连接

yrdbyhpb

yrdbyhpb2#

请提供代码片段,并确认您使用的Jedis版本(我可能猜是2.9.0)。
以前,Jedis也有同样的问题(与超时配置有关)。
更多详情请点击此处:
https://github.com/xetorthio/jedis/issues/1029
https://github.com/xetorthio/jedis/issues/932

q9rjltbz

q9rjltbz3#

在我的例子中,我有一个本地Redis Server 6,Jedis使用host=localhost或host=127.0.0.1连接,但是当我尝试执行jedis连接ping时,它抛出了JedisConnectionException。
如果你有同样的行为,请检查你的redis服务器是否正常工作。使用redis-cli连接并使用jedis中的相同主机和端口执行ping。
如果你得到一个响应“PONG”,这是可以的,但如果你得到类似“Connection reset by peer”的东西,你需要改变你的服务器绑定。在我将绑定地址更改为www.example.com后0.0.0.0,它对我有效。
一个使用docker,Redis server 6和redis-client的例子:
1.配置文件redis.conf(使用bind <>或bind 0.0.0.0):

bind 0.0.0.0
protected-mode yes
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize no
supervised no
pidfile /var/run/redis_6379.pid
loglevel notice
logfile ""
databases 16
always-show-logo yes
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
rdb-del-sync-files no
dir ./
replica-serve-stale-data yes
replica-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-diskless-load disabled
repl-disable-tcp-nodelay no
replica-priority 100
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
replica-lazy-flush no
lazyfree-lazy-user-del no
oom-score-adj no
oom-score-adj-values 0 200 800
appendonly no
appendfilename "appendonly.aof"
appendfsync everysec
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
aof-use-rdb-preamble yes
lua-time-limit 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
stream-node-max-bytes 4096
stream-node-max-entries 100
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit replica 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
dynamic-hz yes
aof-rewrite-incremental-fsync yes
rdb-save-incremental-fsync yes
jemalloc-bg-thread yes

字符串
1.运行Redis服务器:

#!/bin/bash
MSYS_NO_PATHCONV=1 docker run -d --rm --name redis -p 6379:6379 -v $(pwd)/redis.conf:/redis.conf redis redis-server /redis.conf


1.运行Redis客户端:

docker run -it --network=host --rm redis redis-cli -h 127.0.0.1


1.测试连接:

127.0.0.1:6379> ping
PONG


之后,检查你的jedis配置使用相同的IP和端口,这应该解决问题。

tkclm6bt

tkclm6bt4#

尝试关闭保护模式在redis-server.
步骤:-
1.打开redis-cli
1.运行命令“CONFIG SET protected-mode no”

相关问题