Closed NikolaiBirolini closed 1 year ago
Admin and Stats Output:
For /clusters :
grpc::observability_name::grpc
grpc::default_priority::max_connections::1024
grpc::default_priority::max_pending_requests::1024
grpc::default_priority::max_requests::
grpc::default_priority::max_retries::3
grpc::high_priority::max_connections::1024
grpc::high_priority::max_pending_requests::1024
grpc::high_priority::max_requests::1024
grpc::high_priority::max_retries::3
grpc::added_via_api::false
server_info.txt 1024
if you figure out the issue @NikolaiBirolini it would be good to turn this example into a sandbox (there is already one for a go
k/v store using a grpc bridge here - which might help https://www.envoyproxy.io/docs/envoy/latest/start/sandboxes/grpc_bridge)
cc @qiwzhang @lizan
Thank you for your answer ! Yes I will !
This issue has been automatically marked as stale because it has not had activity in the last 30 days. It will be closed in the next 7 days unless it is tagged "help wanted" or "no stalebot" or other activity occurs. Thank you for your contributions.
I didn't found a solution yet
This issue has been automatically marked as stale because it has not had activity in the last 30 days. It will be closed in the next 7 days unless it is tagged "help wanted" or "no stalebot" or other activity occurs. Thank you for your contributions.
This issue has been automatically closed because it has not had activity in the last 37 days. If this issue is still valid, please ping a maintainer and ask them to label it as "help wanted" or "no stalebot". Thank you for your contributions.
Title: No healthy stream GRPC-JSON transcoding on localhost
Description: Hello everyone, I want to do a basic helloworld program to understand the Envoy proxy transcoding.
I read the official example on https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/grpc_json_transcoder_filter
The proxy will listen on the 51050 port and my GRPC server will listen on the 50051.
What I want ? I want to return a "Hello" on the http://localhost:51050/say.
What I have ? This link returns me : "no healthy upstream"
Repro steps: I writ a GRPC server and a .proto file to define his services.
GRPC Server :
Proto file :
I generate his associated files and I compile him. The above files are original examples from GRPC repository.
For the proxy : I modify my proto file to include the google api library and to associate my sayHello service with /say.
My proto file :
I generate helloworld.pb for the proxy with this command :
Finally, I launch my proxy with docker :
Config:
Logs: