Code RoomColumnar table mutations
HardPrep Room Coding #3422

Columnar table mutations

System designDatabases & SQLStorage & CDNSenior–Staff~50 min

Design how a columnar lakehouse table format (think Delta/Iceberg-class, immutable column files on object storage) supports row-level UPDATEs and DELETEs and GDPR 'delete this user' without rewriting whole multi-GB files on every change. Constraint: column files are immutable on the object store, queries scan them directly, and you need ACID semantics (a reader sees a consistent table version) plus reasonable read performance after many small deletes. Design the mutation mechanism, how reads reconcile it, and the compaction that keeps reads fast.

What a strong answer looks like

Clarify scale and constraints first. Propose a clean component breakdown, then go deep on the hard parts (data model, bottlenecks, consistency, failure modes) and name the trade-offs you are making.

Clarify5:30 left
Estimate5:30 planned
Design16:30 planned
Deep dive13:30 planned
Failure9:00 planned
0:00
Which questions mattered is sealed until you submit. Telling you now would just be handing over the edge cases.