JedisConnectionException:意外的流错误结束

时间:2017-06-07 13:06:15

标签: redis jedis

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

  

redis.clients.jedis.exceptions.JedisConnectionException:意外的流结束。       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]       在

有什么想法来解决这个错误吗?

3 个答案:

答案 0 :(得分:1)

请提供代码剪切并确认您正在使用的Jedis版本(我猜可能是2.9.0)。

以前,Jedis有同样的问题(与超时配置有关)。

此处有更多详情:

https://github.com/xetorthio/jedis/issues/1029

https://github.com/xetorthio/jedis/issues/932

答案 1 :(得分:0)

原因是服务器设置超时时间不为零,这意味着在断开或关闭一个周期的连接之后。因此客户端从池中获取连接,但是在那之后,该连接无效!

解决方案是: 将服务器上的超时设置为0 要么 不要在客户端上保留池-> GenericObjectPoolConfig.setMaxIdle(0) 因此,每次连接服务器时,客户端都会从池中建立一个新连接,而不是旧连接

答案 2 :(得分:0)

就我而言,我有一个本地 Redis Server 6,Jedis 使用 host=localhost 或 host=127.0.0.1 进行连接,但是当我尝试执行 jedis 连接 ping 时,它会抛出 JedisConnectionException。

如果您有相同的行为,请检查您的 redis 服务器是否正常工作。使用 redis-cli 连接并使用与 jedis 中相同的主机和端口执行 ping。

如果您收到“PONG”响应,那没关系,但是如果您收到“对等方重置连接”之类的信息,则需要更改服务器绑定。 在我将绑定地址更改为 0.0.0.0 后,它对我有用。

使用 docker、Redis 服务器 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 和端口,这应该可以解决问题。