Concept Flow - Why transformations build processing pipelines
Start with RDD/DataFrame
Apply Transformation 1
Apply Transformation 2
Apply Transformation 3
Build Pipeline (Lazy)
Trigger Action
Execute all transformations in order
Produce final result
Transformations create a chain of steps (pipeline) that Spark remembers but does not run until an action triggers execution.