-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adjusting disconnectedBehavior Option to Prevent Timeout When Redis Shutdown #2866
Comments
I've been thinking about this and I am not sure this is the right way to go.
The problem is that the driver has no way to distinguish between these two different scenarios, without implementing some additional logic to notify it upon shutdown (e.g. push a pubsub message to a control channel that would let the driver disable auto-reconnect). As far as I know the Redis server does not currently send any notification when it is being gracefully shut down. Without the above custom logic any configuration change you make could potentially compromise the first scenario (reducing timeout value, changing reliability setting, disable auto-reconnect). |
I agree with your view that if the reliability setting is AT_LEAST_ONE and autoReconnect is true, the expected behavior would be to retry the requests. However, we already specify options such as disconnectedBehavior (DisconnectedBehavior.REJECT_COMMANDS). Even with a reliability setting of AT_LEAST_ONE, it doesn't seem strange to me that commands queued during a disconnect are rejected according to DisconnectedBehavior. When DisconnectedBehavior.REJECT_COMMANDS is set with a reliability level of AT_LEAST_ONE, new commands are rejected. How about applying the same logic to commands that are already in the queue? So, I feel that it would not be a major issue if the settings for DisconnectedBehavior take precedence. Please let me know your thoughts. |
Scratch what I said in my last comment. You are correct: /**
* Behavior of connections in disconnected state.
*/
public enum DisconnectedBehavior {
/**
* Accept commands when auto-reconnect is enabled, reject commands when auto-reconnect is disabled.
*/
DEFAULT,
/**
* Accept commands in disconnected state.
*/
ACCEPT_COMMANDS,
/**
* Reject commands in disconnected state.
*/
REJECT_COMMANDS,
} The As such, when By the way - wouldn't this also mean that (in your case) - if you disconnect for a reason different than the version upgrade you would loose all the commands in the queue after reconnecting? |
@mp911de Seems to me this is a meaningful fix, what do you think? |
I need to have another look, this seems more intricate in the details than anticipated. |
Feature Request
Is your feature request related to a problem? Please describe
Sometimes need to shut down Redis for maintenance, such as version upgrades. When shutdown or kill redis-server, connection is disconnected immediatly. But some requests do not fail immediately but instead experience timeouts, increasing application latency.
Currently, our Redis client options are configured as follows:
The DisconnectedBehavior.REJECT_COMMANDS option appears to cancel commands when the connection is lost. However, if autoReconnect is not set to false, commands in the CommandHandler.stack are not canceled but are placed into the disconnectedBuffer. Therefore, ongoing commands are not rejected if autoReconnect is true, even with the client option modified.
Describe the solution you'd like
Condition for canceling commands in the CommandHandler.stack should be based solely on rejectCommandsWhileDisconnected and not combined with autoReconnect.
(sample implementation)
Describe alternatives you've considered
adding a little more complexity, which can be beneficial for migrations such as versioning because they don't change existing behavior
Adjusting the autoReconnect option can solve this issue immediately, but it would require implement custom reconnect connection.
I want to avoid writing custom code for reconnections by using the auto-reconnect feature.
Teachability, Documentation, Adoption, Migration Strategy
Maybe we need to update docs for disconnectedBehavior option.
The text was updated successfully, but these errors were encountered: