Bird
0
0

Given a Kubernetes pod with Linkerd injected, what happens when the pod sends a request to another service?

medium📝 Analysis Q4 of 15
Microservices - Service Mesh
Given a Kubernetes pod with Linkerd injected, what happens when the pod sends a request to another service?
AThe request is converted to a database query
BThe request bypasses Linkerd and goes directly to the service
CThe request passes through the Linkerd proxy which manages retries and load balancing
DThe request is blocked by Linkerd proxy by default
Step-by-Step Solution
Solution:
  1. Step 1: Understand Linkerd proxy behavior

    Linkerd proxy intercepts requests to manage retries, load balancing, and security.
  2. Step 2: Eliminate incorrect behaviors

    Requests do not bypass Linkerd, are not blocked by default, nor converted to database queries.
  3. Final Answer:

    The request passes through the Linkerd proxy which manages retries and load balancing -> Option C
  4. Quick Check:

    Linkerd proxy intercepts requests = True [OK]
Quick Trick: Linkerd proxy manages traffic, does not block or bypass [OK]
Common Mistakes:
MISTAKES
  • Thinking requests bypass Linkerd proxy
  • Assuming proxy blocks all requests
  • Confusing requests with database queries

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Microservices Quizzes