Skip to content

Commit

Permalink
Merge pull request ambujraj#1331 from AElhamidi/patch-1
Browse files Browse the repository at this point in the history
 FileLetterCounter-JAVA&MapReduce
  • Loading branch information
ambujraj authored Mar 17, 2019
2 parents f1d5cbb + 1952e54 commit 98c2e92
Show file tree
Hide file tree
Showing 2 changed files with 106 additions and 1 deletion.
8 changes: 7 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2028,6 +2028,12 @@ About: Student
Programming Language: C, C++, Java, Python
Email: [email protected]

Name: [Elhamidi Abdelhay](https://github.com/AElhamidi)<br/>
Place: Agadir,Morocco<br/>
About: software engineering student and developer!<br/>
Programming languages: c++,Java,PHP,Python,Html,js,Css and plenty of other <br/>
Email: [email protected]


Name: Devansh (https://github.com/devanshhooda)
Place: Delhi, India
Expand Down Expand Up @@ -2110,4 +2116,4 @@ Name: [Prasun](https://github.com/rupna100)<br/>
Place: India<br/>
About: Computer science student<br/>
Programming languages: c , cpp, python , ruby , js <br/>
Email: [email protected]
Email: [email protected]
99 changes: 99 additions & 0 deletions FileLetterCounter-JAVA-MapReduce/LetterCount.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
import java.io.IOException;

import java.util.StringTokenizer;



import org.apache.hadoop.conf.Configuration;

import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;

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;

import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;

public class LetterCount {

public static class TokenizerMapper extends Mapper<Object, Text, Text, IntWritable>{

private final static IntWritable one = new IntWritable(1);

private Text word = new Text();

public void map(Object key, Text value, Context context ) throws IOException, InterruptedException {

StringTokenizer itr = new StringTokenizer(value.toString());

while (itr.hasMoreTokens()) {
int i=0;
String Token=itr.nextToken();
while(i<Token.length()) {
word.set(String.valueOf(Token.charAt(i)));
context.write(word, one);
i++;
}
}

}

}


public static class IntSumReducer extends Reducer<Text,IntWritable,Text,IntWritable> {

private IntWritable result = new IntWritable();

public void reduce(Text key, Iterable<IntWritable> values,Context context ) throws IOException, InterruptedException {

int sum = 0;

for (IntWritable val : values) {

sum += val.get();

}

result.set(sum);

context.write(key, result);

}

}


public static void main(String[] args) throws Exception {

Configuration conf = new Configuration();

Job job = Job.getInstance(conf, "letter count");

job.setJarByClass(LetterCount.class);

job.setMapperClass(TokenizerMapper.class);

job.setCombinerClass(IntSumReducer.class);

job.setReducerClass(IntSumReducer.class);

job.setOutputKeyClass(Text.class);

job.setOutputValueClass(IntWritable.class);

FileInputFormat.addInputPath(job, new Path(args[0]));

FileOutputFormat.setOutputPath(job, new Path(args[1]));

System.exit(job.waitForCompletion(true) ? 0 : 1);

}

}

0 comments on commit 98c2e92

Please sign in to comment.