Replies: 1 comment
-
Hey @ackerL , There are some things missing in your sample, like the If you need a 1:1 relationship perhaps you can just use the |
Beta Was this translation helpful? Give feedback.
-
Hey @ackerL , There are some things missing in your sample, like the If you need a 1:1 relationship perhaps you can just use the |
Beta Was this translation helpful? Give feedback.
-
In our use cases, the client fleet is super big, in extreme use case, it could exceed 1000 host capacity. And the Redis server has 100 nodes(20 shards, 1 primary node, 4 replica nodes).
When we initialize the connection, the implementation is:
It means for one host in the client fleet, when it started, it will initialize the Read and Write connection to the Redis cluster. As Redis cluster has 100 nodes(hosts), i believe, the client host will setup connection to the 100 host separately, and for one host, it will initialize two connections.
From the redis cluster side, given the same client host, for any Redis node, Ideally it should hold two connections from the client client.
After we verify the behavior, we found that some redis hosts hold more than 2 connections from the client host.
10.117.154.244 is the client host.
We want to know:
Similar issue: #3031 (comment)
Beta Was this translation helpful? Give feedback.
All reactions