Hello,
I used Docker Swarm to deploy DGraph and when I used HaProxy for load balancing, I received the following error message
Error: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.UNAVAILABLE
details = "Trying to connect an http1.x server"
debug_error_string = "{"created":"@1592373707.742817000","description":"Error received from peer ipv4:192.168.1.100:9083","file":"src/core/lib/surface/call.cc","file_line":1056,"grpc_message":"Trying to connect an http1.x server","grpc_status":14}"
>
My haProxy configuration is as follows
listen alpha-client-cluster
bind *:9083
mode http
maxconn 300
balance roundrobin
server server1 192.168.1.100:9080 maxconn 300 check
server server2 192.168.1.101:9081 maxconn 300 check
server server3 192.168.1.102:9082 maxconn 300 check
What should I do next or what information should I provide to help solve the problem