computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
647 B
12 lines
647 B
2 years ago
|
# Gateway Routing
|
||
|
|
||
2 years ago
|
Route requests to multiple services or multiple service instances using a single endpoint. The pattern is useful when you want to:
|
||
|
|
||
|
- Expose multiple services on a single endpoint and route to the appropriate service based on the request
|
||
|
- Expose multiple instances of the same service on a single endpoint for load balancing or availability purposes
|
||
|
- Expose differing versions of the same service on a single endpoint and route traffic across the different versions
|
||
2 years ago
|
|
||
|
To learn more, visit the following links:
|
||
|
|
||
10 months ago
|
- [@article@Gateway Routing pattern](https://learn.microsoft.com/en-us/azure/architecture/patterns/gateway-routing)
|