Java examples for Big Data:Hadoop
Set hadoop map reduce output
import java.io.IOException; import java.util.Iterator; 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; /**/*from w ww . jav a2s . co m*/ * @author admln * */ public class CountSpace { enum Counter { TIMESKIP, IPSKIP, URLSKIP, SERSKIP, } /** * * Map * */ public static class countSpaceMapper extends Mapper<Object,Text,Text,IntWritable> { public final static IntWritable ONE = new IntWritable(1); public Text word = new Text(); @Override public void setup(Context context) { } @Override public void map(Object key,Text value,Context context) throws IOException, InterruptedException{ try { String space = Log.parser(value.toString()).getSpace(); if(space!=null) { word.set(space); context.write(word, ONE); } }catch(MyException eM) { context.getCounter(Counter.IPSKIP).increment(1); } } @Override public void cleanup(Context context) { } } /** * * Reduce */ public static class countSpaceReducer extends Reducer<Text,IntWritable,Text,IntWritable> { int all = 0; int sum = 0; @Override public void setup(Context context) throws IOException, InterruptedException { } public void reduce(Text key,Iterable<IntWritable> values,Context context) throws IOException, InterruptedException { Iterator<IntWritable> ite = values.iterator(); sum = 0; while(ite.hasNext()) { all++; sum++; ite.next(); } context.write(key, new IntWritable(sum)); } @Override public void cleanup(Context context) throws IOException, InterruptedException { context.write(new Text("test"), new IntWritable(all)); } } @SuppressWarnings("deprecation") public static void main(String[] args) throws IOException, ClassNotFoundException, InterruptedException { Path input = new Path("hdfs://192.168.32.131/in/yourApp/"); Path output = new Path("hdfs://192.168.32.131/out/yourAppcountSpace/"); Configuration conf = new Configuration(); Job job = new Job(conf,"countSpace"); job.setJarByClass(CountSpace.class); job.setMapperClass(countSpaceMapper.class); job.setReducerClass(countSpaceReducer.class); job.setOutputKeyClass(Text.class); job.setOutputValueClass(IntWritable.class); FileInputFormat.addInputPath(job, input); FileOutputFormat.setOutputPath(job, output); System.exit(job.waitForCompletion(true)?0:1); } }