-
I want to develop a server with an API gateway that receives gRPC requests and routes them to the right service I want to do this without an aggregator - has anyone tried building a gRPC API gateway that directly routes gRPC requests to the appropriate backend services? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
What is your routing criteria? gRPC starts as HTTP, so long as you're routing based on the initial request (path, headers, etc.) you don't need to do anything special. It only gets hard if you want to route based on the body. |
Beta Was this translation helpful? Give feedback.
What is your routing criteria?
gRPC starts as HTTP, so long as you're routing based on the initial request (path, headers, etc.) you don't need to do anything special.
It only gets hard if you want to route based on the body.