Search the practice set

126 questions, 454 terms and 400 topics in 20 areas.

12 results for “On-Call”

Questions · 5
quiz

A downstream service slows from 50 ms to 3 s. Within two minutes every service in the request path is down, including ones that do not call it. Explain the mechanism and how you would have prevented it.

What the interviewer is testing Whether you understand that most outages are amplification, not failure — and whether you can name the specific mechanism rather

Distributed Systems
quiz

A team proposes CQRS for a CRUD admin panel because reads are slow. Is that the right call?

Why not CQRS here "Reads are slow" is a symptom with many causes, and CQRS addresses only one of them: the read and write models having genuinely different opti

CQRS
quiz

A team proposes circuit breakers on every downstream call. What would you add, and why is the breaker not the most important control?

Why the bulkhead matters more A circuit breaker acts after it has detected a pattern of failure. During the seconds before it trips — and while its threshold is

Circuit Breakers
quiz

When should a service call another synchronously, and when should it publish an event instead? Give me the deciding test, not a preference.

The deciding test Does this user action succeed or fail based on this callee's response? If yes, the call is synchronous, because you need the answer to decide.

Architecture Decision-Making
quiz

You must roll out MFA to 40,000 employees. Security wants hardware keys; the service desk fears the call volume. Design the rollout.

The framing that resolves the argument Not every identity carries the same risk, so not every identity needs the same factor. A uniform mandate is what creates

Authentication