Skip to content

Latest commit

 

History

History
85 lines (40 loc) · 1.4 KB

README.md

File metadata and controls

85 lines (40 loc) · 1.4 KB

Architecture Design.

Contents at a Glance.

About.

Documentation.

General.

General Parts.

  • API Gateway.
  • Load Balancer.
  • Fault Tolerance and Resilience.
  • Cycle Breaker Pattern.
  • Fallback.
  • Config Server.
  • Authentication and Authorization.

Situations that can provoke problems on the Server.

  • Control the number of threads on the server.
  • Slow executions of thread.

Sort This.

  • Fallback functionality.
  • Throw an error. This way is not recommended.
  • Return a fallback "default" response.
  • Save previous responses (cache) and use that when possible.

Type of Scaling.

  • Horizontal.
  • Vertical.
  • Hybrid.

Help.