Learn the vocabulary of a language-agnostic L7 proxy handling load balancing and observability as a sidecar.
0 / 5 completed
1 / 5
At standup, a dev mentions a high-performance L7 proxy deployed alongside each service instance to handle load balancing, retries, and observability without any application code change. What proxy is being described?
Envoy proxy is a high-performance L7 proxy deployed alongside each service instance to handle load balancing, retries, and observability without requiring any change to the application's own code. A simple TCP-level load balancer has no visibility into HTTP-level concerns like a specific request path or header, limiting how much intelligent routing or retry logic it can apply. This L7 awareness is what makes Envoy the common data-plane choice underlying many service mesh implementations.
2 / 5
During a design review, the team wants Envoy to fetch its routing and cluster configuration dynamically from a control plane at runtime, rather than reading a static configuration file that requires a restart to update. Which capability supports this?
Dynamic configuration via Envoy's xDS APIs lets it fetch its routing and cluster configuration dynamically from a control plane at runtime, updating its behavior without requiring a restart. Reading only a static configuration file loaded once at startup forces a restart, and the resulting brief disruption, every time the routing configuration needs to change. This dynamic configuration capability is what lets a service mesh control plane push a routing update across an entire fleet of Envoy instances smoothly.
3 / 5
In a code review, a dev notices Envoy is configured with an outlier detection policy that temporarily ejects an upstream host from the load-balancing pool after it returns too many consecutive errors. What does this represent?
Outlier detection temporarily ejects an upstream host from Envoy's load-balancing pool after it returns too many consecutive errors, keeping traffic away from a host that's actively failing. Continuing to send traffic to every host indefinitely, with no ejection, keeps routing requests to a host that's likely to keep failing them. This automatic ejection is what lets Envoy's load balancing adapt to a real-time failure without waiting for a person to notice and intervene manually.
4 / 5
An incident report shows requests kept being routed to an upstream host that was already failing nearly every request, because outlier detection had never been configured on the Envoy proxy sitting in front of that service. What practice would prevent this?
Configuring outlier detection lets Envoy automatically eject a persistently failing upstream host from its load-balancing pool, keeping traffic away from a host that's clearly struggling. Leaving outlier detection unconfigured is exactly what let requests keep being routed to a nearly-always-failing host in this incident. This configuration is a standard resilience feature for any Envoy deployment sitting in front of a service with multiple upstream instances.
5 / 5
During a PR review, a teammate asks why the team deploys Envoy proxy alongside each service instead of building retry logic, load balancing, and observability directly into every application's own codebase. What is the reasoning?
Envoy provides the same reusable, language-agnostic networking behavior to every service unchanged, letting one maintained proxy configuration serve many different applications regardless of what language each is written in. Building that same logic directly into every application duplicates it across every codebase, multiplying the maintenance burden considerably. The tradeoff is the added resource overhead and operational complexity of running and configuring an extra proxy instance alongside every service.
What does the "Envoy Proxy Vocabulary" vocabulary exercise cover?
This exercise tests real IT vocabulary related to envoy proxy vocabulary through 5 multiple-choice questions, each built from realistic workplace sentences rather than abstract definitions.
Is this vocabulary exercise free to use?
Yes. Every exercise on CoderSlingo, including this one, is completely free — no account, sign-up, or payment required.
How many questions does this exercise have?
This exercise has 5 questions. Each one shows a real-world sentence or scenario with multiple-choice options and an explanation once you answer.
What happens after I answer a question?
You'll see immediate feedback showing whether your answer was correct, along with a short explanation of why — then a button to move to the next question, and a full results screen at the end.
Can I retry the exercise if I get questions wrong?
Yes. Once you reach the results screen, click "Try again" to reset your answers and go through the exercise from the start as many times as you like.
Do I need to create an account to take this exercise?
No account is needed. Your answers are scored in your browser during the session — nothing is saved to a server, so you can jump straight in.
Is my progress saved if I leave the page?
No — progress within an exercise resets if you navigate away or reload. Each exercise is short enough to complete in a few minutes in one sitting.
Are these vocabulary exercises connected to other topics?
Yes — browse the full vocabulary exercises hub to find related modules covering adjacent IT topics and roles.
How is this different from reading a glossary or blog article?
Exercises like this one are active recall drills — you have to choose the correct term or phrasing yourself, which builds retention faster than passively reading a definition.
Where can I find more vocabulary exercises?
Browse the full Vocabulary exercises hub for hundreds of modules covering Agile, DevOps, security, databases, architecture, and more — organised by IT role and skill.