Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 5 Current »

Problem

  • Perform a task and need to make multiple calls to various backend services. An application could rely on many services.

Solution

  • Use a gateway to reduce chatiness between the client and the services.

image-20240819-150428.png

API Gateway Aggregation in Practice

image-20240819-154635.png
  • API Gateway products usually act like a reverse proxy for ingress communication, where you can also filter the APIs from the internal microservices plus apply authorization to the published APIs in this single tier.

  • It might have a single API Gateway is not so risky because these kinds of API Gateways are "thinner", meaning that you don't implement custom C# code that could evolve towards a monolithic component.

  • No labels