The max rpc per channel is set to 100 on GFE, we need to set maxRpcsPerChannel in gax accordingly. #1594
Labels
priority: p3
Desirable enhancement or fix. May not be included in next release.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
By default, the number of gRPC channel is set to 1 channel and the max rpc per channel is set to Integer.MAX_VALUE. However, the max rpc per channel is set to 100 on GFE(pending confirmation), if a channel is overloaded and
maxRpcsPerChannel
is not set, ChannelPool will not resize correctly and would cause performance degradation.We need to set the default
maxRpcsPerChannel
to 100, and prevents it from being set to any number that is greater than 100.We also need to make sure directpath is not affected by this, as directpath doesn't suffer all the same limits as GFEs.
The text was updated successfully, but these errors were encountered: