Replies: 1 comment
-
You can not use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I have the following proto-buf and the server side code. When SayHello is resolving a long running task, it puts all other calls ( any SayHello or SayHello2 ) to the server on a queue. the other calls are only resolved when the 1st call is complete.
I am likely missing a setting or config allowing tonic to handle multiple simultaneous calls. I tried googling a lot but failed to find any resource regarding handling ( resolving ) multiple calls at the same time.
I know flask ( a python framework) works on single core and needs gunicorn or some other server to spin up instances using workers to handle multiple calls.
My question is how can i handle(resolve) multiple simultaneous calls made to a tonic server.
Thank you in advance for your help.
Beta Was this translation helpful? Give feedback.
All reactions