Roadmap to becoming a developer in 2022
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.
 
 
 
 
 

647 B

Gateway Routing

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

To learn more, visit the following links: