mapreducepatterns icon indicating copy to clipboard operation
mapreducepatterns copied to clipboard

Repository for MapReduce Design Patterns (O'Reilly 2012) example source code

Results 2 mapreducepatterns issues
Sort by recently updated
recently updated
newest added

Please provide link where can i get the data for succesfully running the code

UserIdReputationEnrichmentMapper's map method: String reputation = userIdToReputation.get(key.toString()); if (reputation != null) { outkey.set(value.get() + "\t" + reputation); output.collect(outkey, value); } the outputkey is userId\tReputation. as the book sayed: Reducer code....