Resilience
Everything on SkillVeris tagged Resilience — collected across the glossary, study notes, blog, and cheat sheets.
12 resources across 1 library
Interview Questions(12)
How Do You Tune Database Connection Timeouts?
Tuning connection timeouts means setting separate limits for connection acquisition, query execution, and idle connections so that a slow dependency fails fast…
How to Answer "Describe a Challenge You Overcame"
The strongest answer uses the STAR method — Situation, Task, Action, Result — to walk through one real, sufficiently difficult challenge and show the specific…
How to Answer "How Do You Adapt to Organizational Change?"
The strongest answer names a specific organizational change you lived through — a reorg, a new tool, a shifted strategy — and shows you actively sought to unde…
How to Answer "Tell Me About a Time You Took a Calculated Risk That Failed"
The strongest answer shows the risk was genuinely calculated — with a clear rationale and weighed downside — owns the failure honestly without blaming external…
How to Answer "Describe a Time You Had to Juggle a Personal Crisis and Work"
The strongest answer briefly acknowledges the personal situation without oversharing, focuses on the specific steps taken to communicate proactively and protec…
How to Answer "Tell Me About a Time You Had to Recover From Public Failure"
The strongest answer owns the failure without excuses, describes the immediate transparent response to affected people, and shows the specific fix plus the cha…
What is the Circuit Breaker Pattern?
The circuit breaker pattern wraps a call to a remote dependency with a state machine that stops sending requests to a service once it detects repeated failures…
What is the Bulkhead Pattern?
The bulkhead pattern isolates resources such as thread pools, connection pools, or processes per dependency or workload so that a failure or slowdown in one pa…
What is Retry with Exponential Backoff?
Retry with exponential backoff is a strategy for re-attempting a failed request after progressively longer wait times between each retry, often with added rand…
What Are the Principles of Chaos Engineering?
Chaos engineering is the disciplined practice of deliberately injecting failures into a production or production-like system to verify it actually withstands t…
What Is Chaos Engineering and Why Do DevOps Teams Use It?
Chaos engineering is the discipline of deliberately injecting controlled failures — killing instances, adding network latency, exhausting resources — into a pr…
What is the Circuit Breaker Pattern?
The circuit breaker pattern wraps calls to a downstream service and stops sending traffic to it once failures cross a threshold, failing fast locally instead o…