解决 redis 连接错误

8 min read
Unable to acquire connection!
java.util.concurrent
.CompletableFuture@79df9551fCompleted
exceptionallyllncrease connection pool
size. Node source: NodeSource [slot=0,
addr=null, redisClient=null, redirect=null,
entry=nulll, command: (SETEX), params:
[] after 3 retry attempts
It looks like you're trying to run a Redis command, but there seems to be an error with the connection. The message mentions a "connection pool size," which suggests that you're using a connection pool to manage connections to your Redis server.

One potential cause of this error is that the connection pool is full and all available connections are in use. In this case, you may need to increase the size of the connection pool to allow for more concurrent connections.

Another possible cause is that the Redis server is not running or is not accessible from the application. In this case, you may need to check the server's status and ensure that it's running and that your application can reach it.

It's also possible that there is an error with the command itself. The message mentions the SETEX command, which is used to set the value of a key and set an expiration time for the key. The error message mentions a [[112, 117, 110, ... which doesn't appear to be a valid SETEX command. It's possible that there is a typo or error in the command.

I hope this helps. If you have any more specific details about the error or the environment in which it's occurring, I may be able to provide more specific help.