Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

import java.io.

IOException;
import java.util.StringTokenizer;
import org.apache.commons.math.stat.descriptive.rank.Max;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer.Context;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
public class MaxWordLength {
public static void main(String[] args)throws Exception {
// TODO Auto-generated method stub
Configuration conf = new Configuration();
Job job = new Job(conf,"MaxWordLength");
job.setJarByClass(MaxWordLength.class);
job.setMapperClass(MaxWordMapper.class);
job.setReducerClass(MaxWordReducer.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(IntWritable.class);
FileInputFormat.addInputPath(job, new Path("/home/mahesh/inputs/Input-Big.txt"));
FileOutputFormat.setOutputPath(job, new Path("/home/mahesh/inputs/linecount2"));
Path outputpath = new Path("/home/mahesh/inputs/linecount2");
outputpath.getFileSystem(conf).delete(outputpath,true);
System.exit(job.waitForCompletion(true)? 0:1 );
}
public static class MaxWordMapper extends Mapper<LongWritable, Text, Text,
IntWritable>{
@Override
protected void map(LongWritable key, Text value,Context context)
throws IOException, InterruptedException {
String txt = value.toString();
for(String line:txt.split(" ")){
if(line.length()>0){
context.write(new Text(line), new IntWritable(line.length()));
}
}
}
}
public static class MaxWordReducer extends Reducer<Text, IntWritable, Text,
IntWritable>{
String maxWord;
protected void setup(Context context) throws java.io.IOException,
InterruptedException {
maxWord = new String();
}
protected void reduce(Text key, Iterable<IntWritable> value, Context context)
throws java.io.IOException,InterruptedException {
if (key.toString().length() > maxWord.length()) {
maxWord = key.toString();
}
}
protected void cleanup(Context context) throws IOException, InterruptedException {
context.write(new Text(maxWord), new IntWritable(maxWord.length()));
}
}
}

You might also like