Nikita Koksharov
Nikita Koksharov
which Redisson objects do you use?
do you use `add(Collection elements)` or `add(T object)` method?
Did you try to set connectionPoolSize = 32 ?
@ramjeetm Can you try 3.31.0 version or the latest one?
@ramjeetm Did you check CPU usage?
Can you try to set connectionPoolSize = 5 or 10 ?
which Valkey or Redis vendor do you use? Try the config below: ```java .setAddress(RedisConstants.HOST_PREFIX + redisProperties.getHost() + ":" + redisProperties.getPort()) .setPassword(authToken) .setUsername(redisProperties.getUserName()) .setSslEnableEndpointIdentification(false) .setConnectTimeout(30000) // Increased from 20000 .setTimeout(30000) //...
This error may happen if mightContain is used with a large amount of elements in the collection. Can you check that?
Can you try the Redisson version used before?
Can you share the Redisson config?