-
I'm inquiring because there is an error left during the application operation due to the Redis connection being disconnected as shown below. The version information for the current application is as follows.
There are two things I'm curious about, Q1.The first is about an hour apart, the message "Reconnecting, last destination was" appears, and the log seems to be reconnecting to the Redis server. Why are they constantly trying to reconnect? Q2.The second is probably related to the first question, but did I run the Redis command at the timing of trying to reconnect and get an error? Error Logs
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Is the above phenomenon related to the I don't have any Or is there a part where I need to set up options like |
Beta Was this translation helpful? Give feedback.
-
I assume that your Redis server is configured to maintain either a client limit or disconnect idle clients. |
Beta Was this translation helpful? Give feedback.
Currently not connected. Commands are rejected
is reported whenClientOptions.disconnectedBehavior
is set toREJECT_COMMANDS
(or when auto-reconnect is disabled).I assume that your Redis server is configured to maintain either a client limit or disconnect idle clients.