You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The number of clients connected to the Redis cluster node fluctuates every one hour. The idle timeout period of the Redis service is set to 1 hour. The more connections in the connection pool, the greater the flapping amplitude.
The client triggers the Watchdog to reconnect. During reconnection, RoundRobinSocketAddressSupplier is used to obtain the next Redis node to be connected.
Node list of the RoundRobinSocketAddressSupplier, which is fixed during initialization. If no node change occurs later,
Can you reorder the partions each time you obtain them? In this way, the node clients are relatively balanced.
Can you elaborate on the chart with the example metrics provided?
For example, how were those metrics gathered, and what do different lines represent? What was the Redis cluster setup when the chart was generated and the corresponding BoundedPoolConfig (e.g minIdle/maxIdle/maxTotal).
Bug Report
Current Behavior
The number of clients connected to the Redis cluster node fluctuates every one hour. The idle timeout period of the Redis service is set to 1 hour. The more connections in the connection pool, the greater the flapping amplitude.
Stack trace
// your stack trace here;
Input Code
Input Code
Expected behavior/code
Environment
Possible Solution
The client triggers the Watchdog to reconnect. During reconnection, RoundRobinSocketAddressSupplier is used to obtain the next Redis node to be connected.
Node list of the RoundRobinSocketAddressSupplier, which is fixed during initialization. If no node change occurs later,
Can you reorder the partions each time you obtain them? In this way, the node clients are relatively balanced.
Additional context
The text was updated successfully, but these errors were encountered: