{
  "id": "bbg-p0246-database-foundations-database-foundations-cache",
  "title": "Cache Failure Modes",
  "chapter": "database-foundations",
  "batch": "07",
  "rank": 68,
  "sourcePage": 246,
  "sourcePointer": "p. 246",
  "status": "accepted",
  "reviewerStatus": "reviewed",
  "fidelityScore": 0.9,
  "canvas": {
    "width": 960,
    "height": 640
  },
  "fireworksTechGraph": {
    "style": "style-1-flat-icon",
    "diagramType": "comparison",
    "topologyNotes": [
      "source page render inspected",
      "extracted page text inspected",
      "source page render and extracted text inspected",
      "preserve four cache failure cases and mitigation direction",
      "omit decorative source icons and long prose"
    ],
    "publicBoundary": [
      "original vector output",
      "no source pixels",
      "no source mark or long wording"
    ]
  },
  "callouts": [],
  "sourceReview": {
    "conceptAnchors": [
      "concept: thundering herd",
      "concept: cache penetration",
      "concept: cache breakdown",
      "concept: cache crash",
      "concept: mitigation"
    ],
    "labelSource": "curated",
    "semanticStatus": "reviewed"
  },
  "groups": [
    {
      "id": "cases",
      "label": "Failure cases",
      "x": 54,
      "y": 126,
      "w": 852,
      "h": 310
    }
  ],
  "shapes": [
    {
      "id": "herd",
      "kind": "rect",
      "label": "Thundering herd",
      "detail": "same expiry",
      "x": 92,
      "y": 164,
      "w": 152,
      "h": 62,
      "tone": "red"
    },
    {
      "id": "penetration",
      "kind": "rect",
      "label": "Penetration",
      "detail": "missing keys",
      "x": 294,
      "y": 164,
      "w": 152,
      "h": 62,
      "tone": "orange"
    },
    {
      "id": "breakdown",
      "kind": "rect",
      "label": "Breakdown",
      "detail": "hot key miss",
      "x": 496,
      "y": 164,
      "w": 152,
      "h": 62,
      "tone": "purple"
    },
    {
      "id": "crash",
      "kind": "rect",
      "label": "Cache crash",
      "detail": "cache offline",
      "x": 698,
      "y": 164,
      "w": 152,
      "h": 62,
      "tone": "red"
    },
    {
      "id": "db",
      "kind": "cylinder",
      "label": "Database",
      "detail": "overloaded",
      "x": 406,
      "y": 298,
      "w": 148,
      "h": 78,
      "tone": "gray"
    },
    {
      "id": "mitigation",
      "kind": "rect",
      "label": "Mitigation",
      "detail": "jitter locks nulls fallback",
      "x": 382,
      "y": 436,
      "w": 196,
      "h": 62,
      "tone": "green"
    }
  ],
  "connectors": [
    {
      "from": "herd",
      "to": "db",
      "label": "stampede",
      "flow": "main"
    },
    {
      "from": "penetration",
      "to": "db",
      "label": "bypass",
      "flow": "main"
    },
    {
      "from": "breakdown",
      "to": "db",
      "label": "hot miss",
      "flow": "main"
    },
    {
      "from": "crash",
      "to": "db",
      "label": "fallback",
      "flow": "main"
    },
    {
      "from": "mitigation",
      "to": "herd",
      "label": "protect",
      "flow": "control",
      "dashed": true
    },
    {
      "from": "mitigation",
      "to": "crash",
      "label": "recover",
      "flow": "control",
      "dashed": true
    }
  ]
}
