Intermediate Vocabulary #resilience #reliability #sre

Fail & Recover Adverbs in IT English

5 exercises on the adverbs that describe how systems fail and recover — essential vocabulary for post-mortems, runbooks, and distributed-systems design documents.

Key verb–adverb patterns in this set
  • fail fast — detect and surface errors immediately; stop before propagating bad state
  • degrade gracefully — continue in reduced-capacity mode when a component is unavailable
  • retry exponentially — exponential backoff: 1s, 2s, 4s, 8s... with jitter
  • restart cleanly — return to known-good initial state; clear in-memory state
  • alert automatically — monitoring rule fires without human intervention
0 / 5 completed
1 / 5
A startup engineering blog post argues for a particular design philosophy:

"We embrace a '___ fast' culture. If a request cannot be completed safely, we return an error immediately rather than attempting partial execution that could leave data in an inconsistent state."

Which adverb completes the well-known software design principle?