DataDriven
LearnPracticeInterviewDiscussDailyJobs

A producer team has filed three proposed schema changes for the orders event: rename amount to amoun

A medium Pipeline Design interview practice problem on DataDriven. Write and execute real pipeline design code with instant grading.

Domain
Pipeline Design
Difficulty
medium

Problem

A producer team has filed three proposed schema changes for the orders event: rename amount to amount_cents, add an optional refund_reason field with default null, and remove the deprecated legacy_sku field. The section's classification is direct: adding an optional field with a default is additive (safe), renaming or removing fields downstream code reads is destructive (forces coordinated deploy), and the safe path for a rename is the expand-contract pattern under the hood. On the canvas, classify each proposed change by adding three classification nodes downstream of the producer, one per change, whose names state which class the change belongs to (additive, destructive, or coordinated rename via expand-contract).

Practice This Problem

Solve this Pipeline Design problem with real code execution. DataDriven runs your solution and grades it automatically.

Related

  • All Practice Problems
  • Mock Interview Mode
  • System Design Interview Questions
  • Data Engineering Interview Prep Guide
  • Daily Challenge
  • Data Engineering Lessons