Slide 32
Slide 32 text
fold (a.k.a. Fan-In with on Top)
(fold reducef combined some-data)
Break some-data into multiple sets, run (reduce reducef) on
each, then run (combine combinef) on the results.
Why? To compress really large data sets into small results, in
multiple steps.