How to use GrpcClient with multiple channel #172
Unanswered
kmlsharma53
asked this question in
Q&A
Replies: 2 comments 3 replies
-
You probably asking in the wrong place. This library does not provide starter for the client (yet) 😉 |
Beta Was this translation helpful? Give feedback.
2 replies
-
Yeah, you're right.
Thanks,
Kamal
…On Thu, Jan 28, 2021, 11:31 AM Swarup Donepudi ***@***.***> wrote:
so you have a springboot app that uses this grpc-starter and makes rpc
requests to other grpc server? and you are expecting that this client of
your sends around 15k rps?
your app(client) sends 15k rps -> grpc server
did i understand your question correctly?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#172 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAPA7OTFV4QVEO7ONVMDJOTS4D4VJANCNFSM4VLVGUVQ>
.
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
As i understand from gRPC doc : it creates one TCP connection underline (per channel).
Lets say we have 15k request per second on a channel, Do we need to create Pool of ManagedChannel at client side to achieve the high throughput or single ManagedChannel will be enough (or it does pooling internally)?
Thanks for the help.
Beta Was this translation helpful? Give feedback.
All reactions