Вы находитесь на странице: 1из 1

Map Reduce Joins

Joins in Map Reduce


Replicated Join
All but one file fit into the memory.
Reduce Side Join
Both files are too big to fit into the memory.
Composite Join
Cartesion Product

8
4
2
Inverted Index
FileSplit fileSplit = (FileSplit) reporter.getIn
putSplit();
String fileName = fileSplit.getPath().getName();
String textLine = value.toString();
private static String clean(String input) {
input=input.toLowerCase();
System.out.println();
String pattern ="[^a-z]";
return(input.replaceAll(pattern, ""));
}
VALUES (

Вам также может понравиться