38Ship a risky schema change to a 2 TB Postgres primary with near-zero downtime. How does that actually work?▼hard★ EssentialNewPhonePeStripeLinkedIn◆ premiumBlue-green works for stateless apps because instances are disposable. Databases are shared state, so safe migrations ride on backward compatibility and an explicit rollback boundary.Open full answer →
04Ship a schema change to a live service with no downtime. Walk me through the sequence.▼hard★ EssentialNewStripeShopifyGitLab2 repliesunlockedThe deployment question that has a real answer and a real trap. Code and schema deploy at different speeds, and any step where they must change together is the step that causes the outage.Open full answer →
41Why do Terraform modules and application artifacts need different versioning disciplines?▼mediumNewHashiCorpAccentureSalesforce◆ premiumApplications roll back by redeploying; modules cannot unapply state. The asymmetry that forces expand-contract discipline and plan-reviewed upgrades instead of promote-and-rollback pipelines.Open full answer →