Hadoop上MapReduce的MaxTemperature示例

Hadoop上MapReduce的MaxTemperature示例,hadoop,mapreduce,Hadoop,Mapreduce,我正在尝试从MapReduce运行MaxTemperature示例。但是我在Hadoop MapReduce示例中找不到MaxTemperature.jar。有人能帮我找到jar文件吗?或者执行这个程序并查看输出的可能性有多大?试试这个 import java.io.IOException; import java.util.*; import org.apache.hadoop.fs.Path; import org.apache.hadoop.conf.*; import org.apac

我正在尝试从MapReduce运行MaxTemperature示例。但是我在Hadoop MapReduce示例中找不到MaxTemperature.jar。有人能帮我找到jar文件吗?或者执行这个程序并查看输出的可能性有多大?

试试这个

import java.io.IOException;
import java.util.*;

import org.apache.hadoop.fs.Path;
import org.apache.hadoop.conf.*;
import org.apache.hadoop.io.*;
import org.apache.hadoop.mapred.*;
import org.apache.hadoop.util.*;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Mapper;






public class Temp {

  public static class Map extends  Mapper<LongWritable, Text, Text, IntWritable> {
   // private final static IntWritable one = new IntWritable();
  //  private Text word = new Text();

    public void map(LongWritable key, Text value, Context context) throws IOException  InterruptedException
{
      String line = value.toString();
      String year=line.substring(0,4);
      //StringTokenizer tokenizer = new StringTokenizer(line);
     // while (tokenizer.hasMoreTokens()) {
      // word.set(tokenizer.nextToken());
       // output.collect(word, one);
      int Temp=Integer.parseInt(line.substring(6,8));
      context.write(new Text(year),new IntWritable(Temp));
      }
    }
  }
/*
  public static class Reduce extends  Reducer<Text, IntWritable, Text, IntWritable> {
    public void reduce(Text key, Iterator<IntWritable> values, OutputCollector<Text, IntWritable> output, Reporter reporter) throws IOException {
     // int max=Integer.MIN_VALUE;
        int sum=0;
      while (values.hasNext()) {
          sum += values.next().get();
      }
      output.collect(key, new IntWritable(sum));
    }
  }*/
public class Reduce extends Reducer<Text, IntWritable, Text, IntWritable> 
{
@Override
    public void reduce(Text key, Iterable<IntWritable> values,Context context)
    throws IOException, InterruptedException 
    {

        int maxValue = Integer.MIN_VALUE;
           for (IntWritable value : values) {
            maxValue = Math.max(maxValue, value.get());
     }
             context.write(key, new IntWritable(maxValue));
      }
}

  public static void main(String[] args) throws Exception {
    JobConf conf = new JobConf(Temp.class);
    conf.setJobName("Temp");

    conf.setOutputKeyClass(Text.class);
    conf.setOutputValueClass(IntWritable.class);

    conf.setMapperClass(Map.class);
    conf.setCombinerClass(Reduce.class);
    conf.setReducerClass(Reduce.class);

    conf.setInputFormat(TextInputFormat.class);
    conf.setOutputFormat(TextOutputFormat.class);

    FileInputFormat.setInputPaths(conf, new Path(args[0]));
    FileOutputFormat.setOutputPath(conf, new Path(args[1]));

    JobClient.runJob(conf);
  }
}

这里的Pssible replicate提供了创建jar所需的所有代码。hadoop installables中没有这个jar。对不起,我有源代码,但我想知道我可以设置什么样的类路径来编译这个程序,以便生成jar
hadoop jar Temp.jar Temp /hdfs_inputFile /hdfs_inputFile