[grpc-io] Re: maximum concurrent streams in cpp

2023-05-31 Thread 'yas...@google.com' via grpc.io
I don't think that you are running into a limit from max concurrent streams. If you haven't explicit set a limit of 15, you are not getting limited by that arg. What are the symptoms that you are seeing? If it is simply a case of only 15 RPCs being served concurrently, I suspect that the issue

[grpc-io] Re: maximum concurrent streams in cpp

2023-05-15 Thread karthik karra
and also tried using different channels for each client. nothing worked On Monday, May 15, 2023 at 2:45:14 PM UTC+5:30 karthik karra wrote: > tried this call but of no use > server_builder.AddChannelArgument(GRPC_ARG_MAX_CONCURRENT_STREAMS,30) > > On Monday, May 15, 2023 at 2:04:04 PM UTC+5:30

[grpc-io] Re: maximum concurrent streams in cpp

2023-05-15 Thread karthik karra
tried this call but of no use server_builder.AddChannelArgument(GRPC_ARG_MAX_CONCURRENT_STREAMS,30) On Monday, May 15, 2023 at 2:04:04 PM UTC+5:30 karthik karra wrote: > Hi All, > > currently i am getting max of 15 streams to server from 2 clients. > how to set the max concurrent streams ? >