[grpc-io] Re: grpc c++ performance - help required

2021-08-11 Thread Sureshbabu Seshadri
Thanks Mark, my current profile does not include channel creation time. Profiling is only applicable for RPC calls. We have an existing code base for IPC which uses CORBA architecture and we are trying to replace it with GRPC, similar sample in CORBA completes quickly that is 1000 RPCs are comp

Re: [grpc-io] grpc c++ performance - help required

2021-08-11 Thread Sureshbabu Seshadri
No luck with IP also, it is same timings, it was already tried missed to mention On Wednesday, August 11, 2021 at 10:02:23 AM UTC+5:30 chrjo...@gmail.com wrote: > What happens if you use the IP instead of the hostname? > > Cheers > Chris > > > Am 11. August 2021 03:31:07 MESZ schrieb Jeff Stege

Re: [grpc-io] Shared object (.so) size on Apple M1

2021-08-11 Thread 'Craig Tiller' via grpc.io
Are you inadvertently turning on something that records debug symbols? On Wed, Aug 11, 2021 at 7:31 PM David Lopes wrote: > Hello all, > > I have a set of build scripts that spawn a docker container to build a set > of artifacts in Python using PIP. One of the dependencies of these > artifacts i

[grpc-io] Shared object (.so) size on Apple M1

2021-08-11 Thread David Lopes
Hello all, I have a set of build scripts that spawn a docker container to build a set of artifacts in Python using PIP. One of the dependencies of these artifacts is, of course, the *grpc* library. The build script is basically pip installing a *requirements.txt* and zipping the dependencies.

[grpc-io] Re: grpc c++ performance - help required

2021-08-11 Thread 'Mark D. Roth' via grpc.io
You can check to see whether the problem is a channel startup problem or a latency problem by calling channel->WaitForConnected(gpr_inf_future(GPR_CLOCK_MONOTONIC)) before you start sending RPCs on the channel. That call won't return until the channel has completed the DNS lookup and establish

[grpc-io] Re: c++ CallbackApi: thread safety

2021-08-11 Thread 'Mark D. Roth' via grpc.io
There can only be one outstanding read or write at a given time on a given stream, but reads and writes can happen in parallel. So you're guaranteed that no more than one thread will be in OnReadDone() at once, and no more than one thread will be in OnWriteDone() at once, but you could have one

[grpc-io] Re: large file transfer with gRPC

2021-08-11 Thread 'Mark D. Roth' via grpc.io
I don't think we have any benchmarks for this kind of use-case. I think the performance would probably depend on the application protocol, like how you split up the file contents into messages sent on the gRPC stream. On Friday, August 6, 2021 at 5:43:09 PM UTC-7 manor parmar wrote: > I have C

Re: [grpc-io] grpc+springboot

2021-08-11 Thread 'Eric Anderson' via grpc.io
Please provide the error you see. On Mon, Aug 9, 2021 at 11:57 PM ashwini d u wrote: > Hi, > grpc: > client: > cashier-service: > address: static://localhost:7443 > negotiationType: plaintext > > Above is working fine, but if i add actual address , i am not able to > compile

[grpc-io] Future support of .NET 4.8 on GRPC Server side

2021-08-11 Thread Tom Teag
It was announced that the Grpc.Core package will be phased out. Is there any other possibility to run a gRPC Server on the full .NET Framework (4.8) than using the Grpc.Core package? -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe fr