Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public class ThirdQueryReducer extends
  2. Reducer<IntWritable, Text, NullWritable, Text> {
  3.  
  4. private NullWritable nullWritableKey = NullWritable.get();
  5. private Text outputValue = new Text();
  6.  
  7. private StringBuilder buildOutputValue(IntWritable key,
  8. StringBuilder reduceValueBuilder, Text value) {
  9.  
  10.  
  11. }
  12.  
  13. @Override
  14. public void reduce(IntWritable key, Iterable<Text> values, Context context)
  15. throws IOException, InterruptedException {
  16.  
  17.  
  18. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement