Re: [grpc-io] [GSoC] Assistance with gRPC Python Ideas

2018-03-12 Thread 'Nathaniel Manista' via grpc.io
On Sat, Mar 10, 2018 at 11:07 AM, Sword Chen wrote: > I am Sword Chen, a postgraduate student at Mid Sweden University. > Pleased to meet you! I have used the gPRC for some time. > Cool! How long? With what programming languages? So I would love to contribute to the

[grpc-io] Re: Non-blocking single-threaded streaming C++ server

2018-03-12 Thread Todd Defilippi
Thanks! I have been messing around with using AsyncNext. My long-term plan is to have some timer that calls back and checks if there is anything in the completion queue via AsyncNext. For now, I've just been trying to get some basics to work. Below I have the code I'm using. (Ignore the

Re: [grpc-io] Assistance with GSoC 2018

2018-03-12 Thread 'Nathaniel Manista' via grpc.io
On Mon, Feb 26, 2018 at 11:24 AM, Naresh R wrote: > This is Naresh, final year CSE undergrad from IIT Kharagpur, India. I've > been looking to work with grpc for GSoC this year. > Pleased to meet you! I have been playing around with the code for the past 3 days, and

Re: [grpc-io] [GSoC 2018] Enable building of gRPC Python with Bazel.

2018-03-12 Thread 'Nathaniel Manista' via grpc.io
On Fri, Feb 16, 2018 at 12:56 PM, Harsh Vardhan wrote: > I'm interested in working on enabling the building of gRPC python with > Bazel. But, I'm unclear on what the goal of the project is. > So are we! But that's kind of the point - it's our most ambitious, most

Re: [grpc-io] GSOC 2018 ideas

2018-03-12 Thread 'Nathaniel Manista' via grpc.io
On Sat, Feb 24, 2018 at 4:41 PM, Charles Cui wrote: >This is Charles from Columbia University, > Pleased to meet you! I saw gRPC is selected in GSOC 2018, and pretty interested in the idea of > implementing early OK semantics for gRPC. So, I want to prepare for a

Re: [grpc-io] Regarding working on gRPC for gsoc 2018

2018-03-12 Thread 'Nathaniel Manista' via grpc.io
On Wed, Feb 14, 2018 at 11:16 PM, shubham dubey wrote: > I am shubham from India and would like to work > on gRPC python project "Support static type-checking of both gRPC Python > itself and of code that uses gRPC Python" for gsoc 2018. > Pleased to meet you! Currently, I

Re: [grpc-io] gRPC Persistent Connections??

2018-03-12 Thread 'Nathaniel Manista' via grpc.io
With what programming language(s) are you working with gRPC? It's likely that the details of the answers to your questions will vary from one programming language to another. On Mon, Mar 12, 2018 at 2:15 AM, Lokanadham M wrote: > If gRPC connections are persistent, a

[grpc-io] gRPC Persistent Connections??

2018-03-12 Thread Lokanadham M
If gRPC connections are persistent, a single client will always talk to a single backend in that configuration. It's fine if you have lots of clients but how load balancing is done? How server is able to handle so many open connections?? Won't it hit open file discriptors limit?? Can some one