Files
deepseek-harness/.agents/notes/implemented/simplification/2026-07-23-collapse-persistence-flush-state.md
T
2026-07-23 21:28:52 +08:00

5.9 KiB

Agent Note: Collapse live persistence into one flush controller

Status: implemented

English | 中文

Problem

The persistence coordinator represented one live session's write lifecycle with separate buffer, initialization, and retirement containers plus the per-id operation chain. Those structures mirrored the same fact: whether that exact Session still had initialization or events that must settle before its state could be released. The checkpoint-only drain also kept every event volatile until another plugin requested session/flush, even though the backend could begin durability work without blocking the synchronous producer.

Decision

Each live Session has one controller containing pending, init, and the optional current flush promise. A session/event listener copies the frozen event into pending and immediately schedules ensureFlush(). Calls during an active write reuse the same promise. The drain snapshots one stable pending prefix and removes it only after appendBatch commits; events admitted during the write remain after that prefix and schedule one follow-up batch.

session/flush is an observation barrier. It waits for initialization and repeatedly awaits or starts the controller's flush until neither a current promise nor pending events remain. An eager failure is logged without rejecting the synchronous event producer, retains the complete batch, and is retried by the next explicit flush, retirement attempt, or backend teardown. Explicit flush and teardown still surface the failure if that retry rejects.

Initialization now enters the existing per-id operation chain once and calls the unserialized core operations while it owns that turn. The chain remains separate from the live controller because detached public create/append/load calls can race without a Session object and still require identity-level serialization.

Crash repair is cold-only. For a live identity, load(id) snapshots the authoritative in-memory events before awaiting their flush, then returns them with SessionState.meta, the header actually used for durable writes; it rejects an open turn without reading or repairing storage. A cold load reserves its identity synchronously inside the per-id chain before awaiting stored-prefix reads or repair writes; the session/created publication boundary rejects and rolls back a same-id live session until the reservation clears. HMR adoption remains separate through loadStored plus the coordinator's cwd check and truncates torn storage without closing the authoritative live turn.

The live-controller map is also the retirement registry. Successful retirement drains and removes its controller; failed retirement leaves it in the map. Backend teardown stops event admission, flushes every controller still present, awaits remaining per-id operations, and closes the backend. No separate retirement set is needed to rediscover unfinished work.

Alternatives considered

Keep checkpoint-only write-behind. This can form larger batches, but makes durability depend on a separately mounted checkpoint policy and maximizes the crash-loss window between checkpoints. Eager scheduling still coalesces synchronous bursts and events arriving during an active write.

Use one coordinator-wide flush promise. The attachment pattern works for one file, but a global promise would serialize unrelated sessions. One controller per live session preserves independent backend progress while the per-id chain protects same-identity operations.

Latch the first eager error permanently. This makes every later flush deterministic, but prevents the existing teardown retry from recovering a transient storage failure. Retaining the batch without latching the error preserves both observability and retry.

Reject every live load. This is safe but removes established balanced live snapshots used by persistence consumers and tests. Snapshot-before-flush gives the call a stable linearization point: successful flush proves exactly that snapshot is durable, while the live path never invokes crash repair.

Verification

  • A focused coordinator test gates the first append, admits another event during that write, and observes an automatic second durable batch without calling session/flush.
  • The shared coordinator contract still covers live adoption, collisions, crash repair, and session/backend disposal over the in-memory, JSONL, and SQLite backends.
  • Failure and teardown tests keep rejected batches pending, retry them before close, and prove an in-flight controller delays backend close.
  • The shared backend contract persists an open live turn, proves load rejects without writing synthetic closers, completes and retires the owner, then reloads the exact completed turn.
  • An AgentLoop regression races resume() against a live open turn and proves the original agent can still durably complete it without an injected interrupted boundary.
  • A controlled backend blocks loadStored, attempts same-id session publication while repair owns the reservation, and proves rollback leaves no ghost controller before a balanced resume succeeds.
  • The ownerless-claim contract gives the live Session a different createdAt, then proves live and later cold loads both return the original stored header.

Consequences

The coordinator has three long-lived containers: persisted identity state, live-session controllers, and per-id operation chains. Eager writes reduce the ordinary crash-loss window and remove separate buffer, initialization, and retirement registries. They can produce more backend batches than checkpoint-only draining; same-tick bursts and events admitted during one write still coalesce.

session/flush no longer chooses when ordinary persistence begins. It remains the ordering and error-observation boundary used by the loop and checkpoint policy, so a successful checkpoint still means every event admitted before its completion is durable.