Podcast Beta
Questions and Answers
What are the two functions expressed by the user of the MapReduce library?
Map and Reduce.
What problem does the programming model consider?
Counting the number of occurrences of each word in a large collection of documents.
What does the Map function do?
Takes an input pair and produces a set of intermediate key/value pairs.
What does the Reduce function do?
Signup and view all the answers
How many output values are typically produced per Reduce invocation?
Signup and view all the answers
Explain the purpose of the Map function in the MapReduce programming model.
Signup and view all the answers
What is the role of the Reduce function in the MapReduce programming model?
Signup and view all the answers
How does the MapReduce library handle the intermediate values in the MapReduce programming model?
Signup and view all the answers
What is the typical output of the Reduce function in the MapReduce programming model?
Signup and view all the answers
For what purpose does the user write the Map and Reduce functions in the MapReduce programming model?
Signup and view all the answers