A developer has written a web application using a microservice architecture, in such an architecture, the client (web browser or mobile application) first initiates a request. The request first reaches the load balancer, then goes through an authentication service, a billing service, then requests a resource, and finally a result is returned.
How many spans does such a call chain consist of?
Answer(s): C
Explanation:
1-request, 2-load balancer, 3-authentication service, 4-billing service, 5-resource request
Reveal Solution
Next Question