Re: [grpc-io] GSOC 2018 ideas

2018-03-13 Thread 'Nathaniel Manista' via grpc.io
On Mon, Mar 12, 2018 at 12:07 PM, Nathaniel Manista wrote: > There's not a whole lot of documentation around the proposed feature, > because it's not so much a new feature as much as filling in a missing > corner. Consider a two-by-two matrix of "have read all requests/have

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

2018-03-13 Thread 'Yang Gao' via grpc.io
Maybe you are over simplifying the code but the snippet does not look correct to me. 1. Your Read call is async, meaning it is more like StartRead and tell me via tag when there is something. So it does not make sense to log the args on its return. 2. You request a MdtDialOut but you do not seem

[grpc-io] [grpc c++] sending requests immediately - avoid batching

2018-03-13 Thread Mass
I have been doing some latency measurement with different modes of grpc. The application that I have is time critical, and I need to ensure that requests are being completed in sub millisecond delay. In my test runs, I noticed that the average latency that I get for number of calls is around

[grpc-io] gsoc 2018 - "Make channel-connectivity-watching cancellable" insights requested

2018-03-13 Thread kaustubh . kapileshwar
Hi gRPC community, My name is Kaustubh and I am a graduate student at Texas A University. I have a background in Distributed systems and have enjoyed using gRPC and Protbuf in my project. This summer I look forward to contribute to the current idea in gRPC of "Make

[grpc-io] GRPC using UDP

2018-03-13 Thread Harish Patil
Hi, Do we have an existing implementations of GRPC using UDP as the underlying transport protocol? If so, please provide the pointers. Thanks. -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving

[grpc-io] Re: Compiling with Emscripten to Web Assembly

2018-03-13 Thread Matthew Avery
I did get grpc and protobuf compiles to WASM but it is not working yet, even after enabling SharedArrayBuffer on my browser. I'm getting a type exception on the first call to Atomics.store() that is trying to allocate memory for pthread support. On Friday, March 9, 2018 at 11:16:28 AM UTC-5,

[grpc-io] grpc.max_metadata_size

2018-03-13 Thread aamit via grpc.io
Hi, Had 2 questions regarding using "grpc.max_metadata_size" 1. It was not clear to me that `max_metadata_size` takes into account size of "detail" part of response. Can we allow setting "max_metadata_size" to -1 to represent unlimited as with `max_send_message_length` and