[grpc-io] Re: Crash on RpcMethod constructor

2020-02-12 Thread 'Stanley Cheung' via grpc.io
Unfortunately grpc version 1.2.6 is probably too old for us to support (it was released almost 3 years ago). Please use a newer version of grpc. On Sunday, February 2, 2020 at 7:44:51 PM UTC-8, armstr...@gmail.com wrote: > > Im running OS X 10.15.3 with grpc installed via homebrew which gives grp

Re: [grpc-io] [Python] GRPC Server performance bottleneck

2020-02-12 Thread 'Lidi Zheng' via grpc.io
I answered in SO. Let's continue the discussion in SO. On Tue, Feb 11, 2020 at 9:58 PM wrote: > > I have asked this question in SO > > https://stackoverflow.com/questions/60181972/python-grpc-server-performance-bottleneck > > but i just would like to try my luck in here as well... > > > I have w

[grpc-io] http://empower.sh : A cloud-native dev framework, based on gRPC and Protobuf

2020-02-12 Thread Yannick Buron
Hello all, I'm sharing here a project I am working since quite some time now: http://empower.sh. This is intended to be a backend framework usable by any developer, with only basic knowledge of Golang. It goes way beyond micro-framework like micro or gin, and is not a monolith like Buffalo. It

[grpc-io] Re: Flow Control for data heavy application (grpc-java)

2020-02-12 Thread lokeshj1703
Sorry for the late reply. We are actually using a bidirectional stream observer. Here is a model implementation of stream observer. Multiple clients can be connected to the server. Clients send chunks of data(16MB chunks) to server for processing. ClientRequestObserver#onNext() { // add the re