An instructor compares MapReduce to filtering lines with pipeline commands and then aggregating counts. What teaching point is that analogy meant to convey?
Select an answer to reveal the explanation.
Short Explanation
Locally you might grep then count; on a cluster MapReduce spreads that filter-then-total idea across many machines. The UNIX pipeline analogy teaches the shape—not that shell pipes replace HDFS. Keep the metaphor as a teaching aid, not a literal install plan.
Full Explanation
Educators often liken MapReduce to UNIX-style pipelines that filter records and then aggregate. The useful insight is that map resembles distributed filtering/transformation and reduce resembles aggregation—scaled across a cluster. The analogy does not claim shell pipes replace HDFS or that MapReduce is merely an installer GUI.