mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-07-12 13:28:55 +00:00
The 0222-0225 batch backfilled plan_id/material_* onto recommendation inside drizzle's single migration transaction. On the production table (~26M rows) that held an AccessExclusiveLock for hours, blocked unrelated migrations, exhausted EBS throughput credits, and could not report progress or resume. Split schema DDL from data backfill: - 0222/0224: keep only instant metadata-only DDL (ADD COLUMN + FK NOT VALID); drop the inline CREATE INDEX. - 0223/0225: backfills removed (now no-ops pointing to the script). - New src/app/db/backfill-recommendation-denormalization.ts: idempotent, resumable, batched (committed per batch) backfill that then builds the indexes CONCURRENTLY and validates the FKs online. - CONTEXT.md: document recommendation->plan (1:1) and recommendation-> material (now at most 1; legacy multi-material rows reconciled). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| app | ||
| lib | ||
| types | ||
| middleware.ts | ||