Just finished reading the following paper on MapReduce. One question - does reduce wait until all map operations are finished or does can it start once some results are available?
Ans : |
|||
|
|
|
Haskell has map and reduce (they call it fold) built-in, and its execution order is undefined (you can even operate on infinite lists, as long as you don't try to evaluate the whole thing). So you could do it either way. If you're asking how Google did it, I don't know for sure, but they probably set it up so the reduce consumes the list they're mapping over to the maximum extent possible, since that way they don't have to keep the already-processed values in memory. |
|||
|
|