Re: Is grpc keepalive supported ?

2018-04-03 Thread bcoz123
Thanks,Maxim Have a nice day Posted at Nginx Forum: https://forum.nginx.org/read.php?2,279261,279283#msg-279283 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Is grpc keepalive supported ?

2018-04-02 Thread bcoz123
Thanks, Maxim, I have another question, If there are multiple grpc clients in the front, Does nginx reuse the same connection to the backend grpc server? By my test, it seems not. In my opinion, http2 can support that. And it can save resourses by avoid creating new tcp connection for each grpc req

Is grpc keepalive supported ?

2018-03-31 Thread bcoz123
Hello everyone, In the latest version(1.13.10) Does ‘grpc_pass’ support the ‘keepalive’ option ? My configuration is: ... http { ... upstream backend { server localhost:50051; keepalive 300; } server { listen 80 http2; location / { grpc_p