Re: Configuration adjustment for GRPC service

2024-01-27 Thread J Carter
Hello, On Thu, 25 Jan 2024 14:53:51 +0100 Ľuboš Pinteš wrote: > Hello Jason and thank for your reply. > > I am fairly new to this stuff. > > Concerning health checks, does it matter if I have only one simple > server? So no load balancing etc.? > Just so you know, active health checks (on

Re: Configuration adjustment for GRPC service

2024-01-25 Thread Ľuboš Pinteš
Hello Jason and thank for your reply. I am fairly new to this stuff. Concerning health checks, does it matter if I have only one simple server? So no load balancing etc.? Dňa 25. 1. 2024 o 14:01 Jason Anderson via nginx napísal(a): Have you tried configuring grpc timeouts on NGINX? This

Re: Configuration adjustment for GRPC service

2024-01-25 Thread Jason Anderson via nginx
Have you tried configuring grpc timeouts on NGINX? This combined with an upstream healthcheck should prevent any client connections that aren't possible for NGINX to service. https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_connect_timeout

Configuration adjustment for GRPC service

2024-01-25 Thread Ľuboš Pinteš
Hello, everybody, I am implementing a GRPC service which has methods, i.e. request/reply and one streaming method, through which the server sends events at random intervals. The GRPC server is written in Go, the client in C#, we are using Grpc.Core. If the server is not running and I call one