[grpc-io] Does gRPC send multiple response message on the same http2 stream ID?

2019-09-12 Thread Yaxiong Zhao
On https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md it was mentioned that response End of stream is marked by: For responses end-of-stream is indicated by the presence of the END_STREAM flag on the last received HEADERS frame that carries Trailers. Does gRPC sends multiple such

Re: [grpc-io] Re: gRPC for embedded systems( for example - RTOS like ThreadX, FreeRTOS etc. )

2019-09-12 Thread Dharam Kumar
Sorry, I didn't get your name :) . But here is my take on your questions - 1. I was using gcc compiler - so I didn't see any problem with lack of c++/c11 library features. Most compilers support features like 'atomic' - check if your compiler offers it or not. Overall, I think it is good to

Re: [grpc-io] Re: gRPC for embedded systems( for example - RTOS like ThreadX, FreeRTOS etc. )

2019-09-12 Thread leuchtend
Hello Dharam, I'm lucky to see your mail when I'm planning to put grpc to embedded device running ThreadX. But it's not easy for me since grpc does not provide any options for embedded device running RTOS. I have following questions and I'm looking forward to your reply. 1. The

[grpc-io] Circuit Breakers in gRPC

2019-09-12 Thread 'Rohan Rathi' via grpc.io
Hi!, My team is planning on implementing circuit breakers for our gRPC service. I only saw a few generic circuit breaker libraries in Java (namely Failsafe and Hystrix). I'm curious to know how it performs with streaming connections such as in gRPC. Is there some other library thats better