What is the proper bounded channel size in server side streaming? #1129
-
Hi, I want to implement a server-side streaming application and am confused about the channel size. I am using For example, when I set the channel size to Thanks in advance, sincerely |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In this context, what do you mean client polled? The server will attempt to fill the tcp buffer eagerly and backpressure is done via tcp/h2 windowing. Not sure if that answers your question but the client doesn't need to poll to have data sent on the wire. |
Beta Was this translation helpful? Give feedback.
In this context, what do you mean client polled? The server will attempt to fill the tcp buffer eagerly and backpressure is done via tcp/h2 windowing. Not sure if that answers your question but the client doesn't need to poll to have data sent on the wire.