sxsphinxstack

Skills / Working / Design a schema evolution process

Working Code skill

Design a schema evolution process

Design schema evolution with compatibility rules, ownership, versioning, staged rollout, backfill, validation, rollback, and retirement.

Change readers and writers in an order that keeps every live version safe.

When to use

  • Use for databases, events, APIs, files, caches, indexes, or analytical tables.
  • Do not combine incompatible semantic change with an unproven storage migration.

Preconditions

  • Inventory schemas, owners, producers, consumers, stored history, versions, contracts, retention, and deployment constraints.

Procedure

  1. Define compatibility for readers, writers, history, unknown fields, defaults, and semantics.
  2. Classify the proposed change as additive, restrictive, reinterpretive, destructive, or identity-changing.
  3. Plan expand, dual-read or dual-write where justified, backfill, switch, verify, and contract.
  4. Version transformations and make backfill replay-safe from immutable source.
  5. Gate each stage with consumer inventory, telemetry, reconciliation, and rollback.
  6. Handle invalid history, nulls, precision, enums, time, ordering, and old binaries.
  7. Communicate deprecation and retain old fields until usage evidence supports removal.
  8. Rehearse mixed-version deploy, rollback, replay, and restore.

Failure plan

  • Stop contraction while any unverified consumer or retained history depends on the old schema.

Worked example

A currency field expands to amount plus code, backfills deterministically, supports mixed readers, then removes the old field only after telemetry and restore rehearsal.