-
Notifications
You must be signed in to change notification settings - Fork 24.5k
Open
Description
Sometimes you have a bug in your client software that leaks Redis connections.
The result is that the server is full of idle connections and there is no easy way to connect with the server to operate on it, as the new connections will be discarded because the max number of clients is reached.
We should investigate if setting the timeout to 1 is a viable way to connect with the server more easily using redis-cli. However setting the timeout to 1 will not be possible using CONFIG SET timeout so an alternative system should be available, like an UDP port receiving very urgent to process commands, or a signal like SIGUSR2 that sets the timeout to 1.
More design is needed.
Reactions are currently unavailable