[grpc-io] CloudNativeCon All Attendee Party

2017-12-07 Thread 'Eric Anderson' via grpc.io
Vijay and I will be at the Lustre Pearl tonight. I've been told we can expect gRPC theming. In case you didn't notice the addition, on Friday we'll also be available for

Re: [grpc-io] grpc c++ stream blocked when connect to an unavailable server

2017-12-07 Thread 'Yang Gao' via grpc.io
You can set a deadline to your stream. Re-issuing the rpc is not really a problem because a failed read at the client means the rpc is done at the server or failed somehow anyway. Or you can configure client side channel keep alive by adding channel arguments: GRPC_ARG_KEEPALIVE_TIME_MS and

[grpc-io] Re: C++ Graceful server shutdown

2017-12-07 Thread 'Yang Gao' via grpc.io
Do you mean you created 9 threads or grpc created 9 threads? I assume you are working on an async grpc server? Are those threads your rpc handling threads? grpc creates some threads internally to do some work offload. On Tuesday, November 28, 2017 at 2:19:28 AM UTC-8, shikhach...@gmail.com

Re: [grpc-io] grpc c++ stream blocked when connect to an unavailable server

2017-12-07 Thread csenanda
Thanks for your reply. I have considered those options and it would not work for me. 1. The streaming rpc will provide incremental on change data from server to the client, if I set the deadline the streaming rpc gets reestablished if server is still connected and have no data to send within

Re: [grpc-io] Shutdown of Individual Services

2017-12-07 Thread Rama Rao
Thanks, Yeah, my main question was around whether server,shutdown can be called before we cleanup the services. Your answer helps. On Thu, Dec 7, 2017 at 3:44 PM, Eric Anderson wrote: > On Thu, Nov 23, 2017 at 12:41 AM, Rama Rao > wrote: > >> Now if

[grpc-io] Re: Digest Authentication with gRPC

2017-12-07 Thread falco20019
Shouldn't be too hard to do. I'm not sure if there is already an default implementation for the language you want to use. There is a good overview here: https://grpc.io/docs/guides/auth.html You can just create your credentials implementation using the Google Authentication as base (C#

[grpc-io] Re: Using DNS Authority in C# client

2017-12-07 Thread Duncan Mole
Cool. I will take a look at the stuff next. On Thursday, 7 December 2017 10:12:14 UTC+1, falco...@gmail.com wrote: > > Glad I could help you :) I hope that they mind adding it into master. It > makes deployment and management of simple infrastructures so much easier if > you don't have to also

[grpc-io] Re: grpc C++ - failure to reconnect to server

2017-12-07 Thread csenanda
Hello, I am facing a similar issue https://github.com/grpc/grpc/issues/13656 Could you please provide your comments? On WHellednesday, 3 August 2016 09:27:03 UTC-5, Vijay Pai wrote: > > Hello, > We never reproduced this issue, but I wanted to know if you (or any others > on the forum) were still

[grpc-io] ejona @ CloudNativeCon

2017-12-07 Thread 'Eric Anderson' via grpc.io
For those attending CloudNativeCon, I can be found in the speaker's lounge. It's in meeting room 1 on the first floor, near registration. -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from

Re: [grpc-io] Shutdown of Individual Services

2017-12-07 Thread 'Eric Anderson' via grpc.io
On Thu, Nov 23, 2017 at 12:41 AM, Rama Rao wrote: > Now if I want to graceful shutdown, do I have first call shutdown on each > of the services added to ServiceImpl and then follow-it with a call to > service.shutdown? > or service.shutdown will handle both the cases?