[grpc-io] Load balancing while using gRPC

2019-02-06 Thread ankitpatel . edu
Hello I am exploring Load balancing while using gRPC . So far i have gone through python quick start guide (hello world example); and it was easy to follow example. I have the same example running on two of my servers. Now I am in search for similar quick start with load balancing. I went

[grpc-io] gRPC execution flow - architecture

2018-12-11 Thread ankitpatel . edu
Hi All I have followed quick start tutorials on gRPC (Python and C++ version) and i want to explore more on gRPC and its use cases, which gRPC.io have pointers to. I am also interested in learning how gRPC works in details including gRPC flow execution diagram and architecture.

Re: [grpc-io] Re: python quick start "hello world" example fails

2018-11-30 Thread ankitpatel . edu
Thanks Srini; it worked after this particular addition to my proxy settings. we can mark this thread as resolved now On Monday, November 19, 2018 at 4:52:17 PM UTC-8, Srini Polavarapu wrote: > > Your connection issue is due to proxy configuration on your machine. As > you can see gRPC is

Re: [grpc-io] Re: python quick start "hello world" example fails

2018-11-12 Thread ankitpatel . edu
Today i tried this example on Centos 7.5 machine and i had same issue. On Friday, November 9, 2018 at 3:54:50 PM UTC-8, Lidi Zheng wrote: > > Hi Ankit, > > Thanks for providing the trace log. I will look into it and update if I > found anything. > > Lidi Zheng > > On Fri, Nov 9, 2018 at 3:04 PM

[grpc-io] Re: python quick start "hello world" example fails

2018-11-09 Thread ankitpatel . edu
here is server log; i killed server at the end by cntrl+c I1109 15:02:26.154260194 13636 ev_epoll1_linux.cc:116] grpc epoll fd: 3 D1109 15:02:26.154434159 13636 ev_posix.cc:169]Using polling engine: epoll1 D1109 15:02:26.154530558 13636 dns_resolver.cc:338]Using

[grpc-io] Re: python quick start "hello world" example fails

2018-11-09 Thread ankitpatel . edu
Hi Lidi here is the log from client side I1109 14:55:12.420854517 13623 ev_epoll1_linux.cc:116] grpc epoll fd: 3 D1109 14:55:12.420880472 13623 ev_posix.cc:169]Using polling engine: epoll1 D1109 14:55:12.421021052 13623 dns_resolver.cc:338]Using native dns

[grpc-io] Re: python quick start "hello world" example fails

2018-11-09 Thread ankitpatel . edu
Hi Lidi how do i get debug logs? what location they are saved at? I have done following and i dont see any extra information on stdout #server side terminal root@fmx216:~/gRPC/grpc/examples/python/helloworld# GRPC_VERBOSITY=DEBUG root@fmx216:~/gRPC/grpc/examples/python/helloworld#

[grpc-io] Re: python quick start "hello world" example fails

2018-11-09 Thread ankitpatel . edu
Hi Lidi $ python -m SimpleHTTPServer 8000 $ curl http://localhost:8000 *Works.* $ nc -6 -l 1234 # in one terminal $ echo 'Hello' | nc localhost 1234 # in another terminal # The 'Hello' should appear in the first terminal *Works.* # Check your gRPC

[grpc-io] Re: python quick start "hello world" example fails

2018-11-08 Thread ankitpatel . edu
Hi Lidi greeterserver.py is running on a terminal from other terminal i can see that port 50051 is bound to python # lsof -i :50051 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME python 18126 root6u IPv6 32226 0t0 TCP *:50051 (LISTEN)

[grpc-io] python quick start "hello world" example fails

2018-11-07 Thread ankitpatel . edu
I have ubuntu server system #lsb_release -a Distributor ID: Ubuntu Description:Ubuntu 16.04.5 LTS Release:16.04 Codename: xenial #uname -a Linux fmx215 4.10.0-42-generic #46~16.04.1-Ubuntu SMP Mon Dec 4 15:57:59 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux I am trying to run