-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocWordCount.java
More file actions
80 lines (64 loc) · 3.38 KB
/
DocWordCount.java
File metadata and controls
80 lines (64 loc) · 3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* Ishan Agarwal email: iagarwa1@uncc.edu */
import java.io.IOException;
import java.util.regex.Pattern;
import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner;
import org.apache.log4j.Logger;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.input.FileSplit;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
public class DocWordCount extends Configured implements Tool {
private static final Logger LOG = Logger .getLogger( DocWordCount.class);
public static void main( String[] args) throws Exception {
int res = ToolRunner .run( new DocWordCount(), args);
System .exit(res);
}
public int run( String[] args) throws Exception {
Job job = Job .getInstance(getConf(), " wordcount ");
job.setJarByClass( this .getClass());
FileInputFormat.addInputPaths(job, args[0]); //Mapper will take the input from this location
FileOutputFormat.setOutputPath(job, new Path(args[ 1])); //Reducer will give the output at this location
job.setMapperClass( Map .class);
job.setReducerClass( Reduce .class);
job.setOutputKeyClass( Text .class);
job.setOutputValueClass( IntWritable .class);
return job.waitForCompletion( true) ? 0 : 1;
}
public static class Map extends Mapper<LongWritable , Text , Text , IntWritable > {
private final static IntWritable one = new IntWritable( 1);
private Text word = new Text();
private static final Pattern WORD_BOUNDARY = Pattern .compile("\\s*\\b\\s*");
public void map( LongWritable offset, Text lineText, Context context)
throws IOException, InterruptedException {
String line = lineText.toString(); //Converting the Text type of Map function to String type
Text currentWord = new Text();
String filename = ((FileSplit)context.getInputSplit()).getPath().getName(); //Getting the filename of the file which is providing input to the Mapper
for ( String word : WORD_BOUNDARY .split(line)) {
if (word.isEmpty()) {
continue;
}
currentWord = new Text((word+"#####"+filename).toLowerCase()); // currentword will be containing the format that will be given as the input to the reducer, e.g. Hadoop#####file1.txt
context.write(currentWord,one); // this will be the output of the Mapper which will be sent to the Reducer
}
}
}
public static class Reduce extends Reducer<Text , IntWritable , Text , IntWritable > {
@Override
public void reduce( Text word, Iterable<IntWritable > counts, Context context)
throws IOException, InterruptedException {
int sum = 0;
for ( IntWritable count : counts) {
sum += count.get(); //To calculate the total occurrences of a word in a file
}
context.write(word, new IntWritable(sum)); // This will be the output of the Reducer of the format (e.g.: Hadoop#####file1.txt 1)
}
}
}