jedis icon indicating copy to clipboard operation
jedis copied to clipboard

Redis Java client

Results 259 jedis issues
Sort by recently updated
recently updated
newest added

hi i am using the Jedis Pool with the following configurations: GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig(); poolConfig.setMaxTotal(120); poolConfig.setMaxIdle(60); poolConfig.setMinIdle(20); poolConfig.setMinEvictableIdleTimeMillis(60*1000); poolConfig.setTimeBetweenEvictionRunsMillis(5000); poolConfig.setMaxWaitMillis(1000); pool = new JedisSentinelPool("myMaster", config.getHostAddress(),poolConfig); After around 4-5...

stale

Hello Team, I am getting below error stack trace, very intermittently in every 30 to 60 days, I get this stack trace for 10 to 30 mins(its the duration where...

stale

### Expected behavior The connections should released from active state and returned to the pool or either go to broken connection pool as time out and then cleaned up ###...

stale

### Expected behavior As I was confusing about whether I should create a Thread to invoke subscribe method, I thought subscribe method might need throw a InterruptException as it is...

stale

### Expected behavior ``` Exception in thread "main" redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: Read timed out at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:202) at redis.clients.util.RedisInputStream.readByte(RedisInputStream.java:40) at redis.clients.jedis.Protocol.process(Protocol.java:153) at redis.clients.jedis.Protocol.read(Protocol.java:218) at redis.clients.jedis.Connection.readProtocolWithCheckingBroken(Connection.java:341) at redis.clients.jedis.Connection.getStatusCodeReply(Connection.java:240) at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:104) at redis.clients.jedis.Connection.sendCommand(Connection.java:126) at...

stale

### Expected behavior I‘m running redis in cluster mode. One of my master nodes’ gone down, after renewSlot, the broken node's evictionTimer thread should be closed otherwise it will cost...

stale

### Expected behavior Write here what you're expecting ... ### Actual behavior Write here what happens instead ... ### Steps to reproduce: Please create a reproducible case of your problem....

stale

### Expected behavior I use jedispool with flink to read and write data into redis cluster. I get Jedis time-out exceptions when I use two jedispool with different addresses in...

stale

Specifically with `sentinelPassword`. Ref #2159

testing
stale

Improve the testing area in Jedis, across two directions: - get more code coverage; - run against different flavors of Redis, and don't build Redis from source. - [ ]...

testing
tracking-issue
techdebt