Does one tonic::transport::Endpoint make use of multiple http2 connections? #1128
-
Each client is associated with one endpoint, right? Does one endpoint create multiple http2 connections under the hood? And side question is, does it use a thread pool or tokio tasks pool to handle these connections? |
Beta Was this translation helpful? Give feedback.
Answered by
LucioFranco
Oct 31, 2022
Replies: 1 comment 2 replies
-
One Channel/Endpoint == one connection under the hood, EXCEPT if you use the balance feature which will then allow you to load balance many connections on a single Channel. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
kingluo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
One Channel/Endpoint == one connection under the hood, EXCEPT if you use the balance feature which will then allow you to load balance many connections on a single Channel.