Type
Bug
Affected subsystem
Tier 3 durable startup/recovery benchmark fixture construction.
User/operator impact
The canonical benchmark suite cannot produce retained evidence: its 100k startup fixture writes all documents in one storage batch, creating a WAL record whose legitimate decompressed size exceeds Midge's 64 MiB recovery limit. Reopening then reports corruption and aborts the suite.
Current behavior
put_bench_documents builds the full dataset and calls Midge::put_documents once. Canonical run 32521755392 successfully completed the repaired Tier 3 query owner, then startup_reopen/100k failed with LZ4 declared output size 81283353 exceeds 67108864 byte limit.
Expected behavior/outcome
The benchmark fixture must construct representative durable data in bounded batches outside the measured reopen path, then reopen and verify the first/last documents and catalog cardinality without changing Midge's storage format, public API, or atomic batch semantics.
Deterministic evidence
Run 32521755392 failed at benches/support/workloads/lifecycle.rs:49 after the 100k fixture shutdown. Source inspection shows the complete 100k vector is submitted as one write batch. The declared LZ4 output size is about 77.5 MiB, above the storage decoder's 64 MiB limit.
Confidence and support status
High confidence. This is a deterministic fixture/storage-boundary mismatch, not benchmark variance. Product-side batch splitting would change atomicity and is outside this issue; fixture setup can use multiple existing atomic calls because setup is unmeasured.
Acceptance criteria
Priority and dependencies
P0 recovery/evidence blocker discovered in #7 after PR #158 repaired the preceding Tier 3 query blocker.
Next action
Implement bounded fixture-only writes, run the focused startup owner, validate and merge a narrow repair, then redispatch canonical evidence from the new final main SHA.
Type
Bug
Affected subsystem
Tier 3 durable startup/recovery benchmark fixture construction.
User/operator impact
The canonical benchmark suite cannot produce retained evidence: its 100k startup fixture writes all documents in one storage batch, creating a WAL record whose legitimate decompressed size exceeds Midge's 64 MiB recovery limit. Reopening then reports corruption and aborts the suite.
Current behavior
put_bench_documentsbuilds the full dataset and callsMidge::put_documentsonce. Canonical run 32521755392 successfully completed the repaired Tier 3 query owner, thenstartup_reopen/100kfailed withLZ4 declared output size 81283353 exceeds 67108864 byte limit.Expected behavior/outcome
The benchmark fixture must construct representative durable data in bounded batches outside the measured reopen path, then reopen and verify the first/last documents and catalog cardinality without changing Midge's storage format, public API, or atomic batch semantics.
Deterministic evidence
Run 32521755392 failed at
benches/support/workloads/lifecycle.rs:49after the 100k fixture shutdown. Source inspection shows the complete 100k vector is submitted as one write batch. The declared LZ4 output size is about 77.5 MiB, above the storage decoder's 64 MiB limit.Confidence and support status
High confidence. This is a deterministic fixture/storage-boundary mismatch, not benchmark variance. Product-side batch splitting would change atomicity and is outside this issue; fixture setup can use multiple existing atomic calls because setup is unmeasured.
Acceptance criteria
Priority and dependencies
P0 recovery/evidence blocker discovered in #7 after PR #158 repaired the preceding Tier 3 query blocker.
Next action
Implement bounded fixture-only writes, run the focused startup owner, validate and merge a narrow repair, then redispatch canonical evidence from the new final
mainSHA.