I hear a lot about map/reduce, especially in the context of Google's massively parallel compute system. What exactly is it?
|
|
From the abstract of Google's MapReduce research publication page:
The advantage of MapReduce is that the processing can be performed in parallel on multiple processing nodes (multiple servers) so it is a system that can scale very well. Since it's based from the functional programming model, the Joel's Can Your Programming Language Do This? piece discusses how understanding functional programming was essential in Google to come up with MapReduce, which powers its search engine. It's a very good read if you're unfamiliar with functional programming and how it allows scalable code. See also: Wikipedia: MapReduce Related question: Please explain mapreduce simply |
|||||||
|
|
Map is a function that applies another function to all the items on a list, to produce another list with all the return values on it. (Another way of saying "apply f to x" is "call f, passing it x". So sometimes it sounds nicer to say "apply" instead of "call".) This is how map is probably written in C# (it's called
As you're a Java dude, and Joel Spolsky likes to tell GROSSLY UNFAIR LIES about how crappy Java is (actually, he's not lying, it is crappy, but I'm trying to win you over), here's my very rough attempt at a Java version (I have no Java compiler, and I vaguely remember Java version 1.1!):
I'm sure this can be improved in a million ways. But it's the basic idea. Reduce is a function that turns all the items on a list into a single value. To do this, it needs to be given another function In C# reduce is called
These Java versions need generics adding to them, but I don't know how to do that in Java. But you should be able to pass them anonymous inner classes to provide the functors:
Hopefully generics would get rid of the casts. The typesafe equivalent in C# is:
Why is this "cool"? Simple ways of breaking up larger calculations into smaller pieces, so they can be put back together in different ways, are always cool. The way Google applies this idea is to parallelization, because both map and reduce can be shared out over several computers. But the key requirement is NOT that your language can treat functions as values. Any OO language can do that. The actual requirement for parallelization is that the little |
|||||||||||||||
|
|
It explains better than what I can. Does it help? |
|||
|
|
