DataDriven
LearnPracticeInterviewDiscussDailyJobs

All quality checks at the end is a common mistake

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

All quality checks at the end is a common mistake. By the time a problem shows up in the serving layer, several intermediate transforms have already run on bad data, and the diagnostic cost climbs because the failure has to be traced back through every transform between source and gate. The section's rule is checks at every layer boundary so failures stay scoped to the layer where they originated. Place the gates by adding three quality-check nodes on this three-layer pipeline, one between source and raw, one between raw and curated, one between curated and serving, each named with what it asserts at that boundary.

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