# Chapter Review: 6.2.2 - The Pocket Diary (WAL I/O)
**Purpose**: To explain why the database stalls *after* a query is "finished" while waiting for the safety of the Write-Ahead Log (WAL).
**Target reader at this point**: A user who sees their query finished in the "Chef's mind" but hasn't returned a result yet due to disk sync latency.
**Main takeaway**: Safety isn't free. `WALWrite` and `WALSync` are the costs of ensuring your data survives a power outage.
## What works
- **The Post-Cook Stall**: Explaining that wait events can happen *after* the dish is cooked (Post-Commit) is a vital insight for understanding transaction lifecycle.
- **The "Bolted" Metaphor**: Describing `fsync` as "bolting the note to the floor" is an upgrade to the "Pocket Diary" metaphor that perfectly explains the mechanical/physical nature of the stall.
- **Actionable Tuning**: Briefly mentioning `commit_delay` and asynchronous commits provides a clear path forward for users suffering from these specific waits.
## Technical concerns
- **Dead Link (Important)**: The footer links to `[[Chapter 6/6.2.1 - The Frozen Pantry (DataFile & BufFile IO)]]`, but this file does not appear to exist in the repository (skipping from 6.2 to 6.2.2).
- **WALSync Details**: (Minor) It might be worth a one-sentence mention that modern SSDs with battery-backed cache make `WALSync` much faster, to help users decide between hardware vs. software tuning.
## Narrative concerns
- **Consistency**: Continues the "Elephant Cafe" and "Pocket Diary" themes perfectly.
- **Integration**: Strong connection back to Chapter 4's "Pinky Swear."
## Readability concerns
- **Conciseness**: This is a very "tight" chapter. Every sentence earns its keep.
- **Tone**: Professional yet whimsical.
## Highlights/Lowlights
- **Most confusing point**: The reference to a missing Chapter 6.2.1.
- **Most engaging point**: The image of a Chef standing with a pen, waiting for a "bolt" to click.
- **Missing example or diagram**: A simple diagram showing the "Commit" line being the moment the `WALSync` happens before the "OK" goes back to the app.
## Feedback (Obs/Imp/Sug)
### Observation 1: Missing Chapter 6.2.1
**Observation**: The footer and previous chapter (6.2) refer to 6.2.1, but the file is missing.
**Impact**: Broken navigation for the reader.
**Suggestion**: Either rename 6.2.2 to 6.2.1 or create the missing 6.2.1 content (The Frozen Pantry).
### Observation 2: Frontmatter consistency
**Observation**: Line 1 starts with `---` here (correct!), unlike previous sub-chapters.
**Impact**: Improved technical consistency.
**Suggestion**: Ensure the "fix" applied here is backported to 6.1.1, 6.1.2, and 6.1.3.
## Top Revisions
1. **Fix the navigation**: Resolve the missing 6.2.1 link/file.
2. **Add a visual**: A "Timeline of a Commit" showing the `WALWrite` phase.
## Overall verdict
**Strong**. A very effective "deep dive" into a specific, high-impact wait event family.
## Scoring Rubric
- **Technical correctness**: 5/5
- **Conceptual structure**: 5/5
- **Narrative flow**: 4/5 (docked for broken link)
- **Readability**: 5/5
- **Example quality**: 4/5
- **Audience fit**: 5/5