zoukankan      html  css  js  c++  java
  • hadoop自己写的最高温度程序源码

    package com.teset;
    
    import java.io.IOException;
    import java.util.StringTokenizer;
    
    import org.apache.hadoop.conf.Configuration;
    import org.apache.hadoop.conf.Configured;
    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.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;
    import org.apache.hadoop.util.Tool;
    import org.apache.hadoop.util.ToolRunner;
    
    public class Tempreature extends Configured implements Tool {
        // 输入的是行偏移量,一行文本,输出的是 一个年份 最高温度
        public static class TemMapper extends
                Mapper<LongWritable, Text, Text, IntWritable> {
    
            @Override
            protected void map(LongWritable key, Text value,
                    Mapper<LongWritable, Text, Text, IntWritable>.Context context)
                    throws IOException, InterruptedException {
                // map处理数据
                String str = value.toString();
                String year = null;
                int Maxtemp = 0;
                StringTokenizer tokenstr = new StringTokenizer(str);
                int i=0;
                while (tokenstr.hasMoreTokens()) {
                    String tempstr = tokenstr.nextToken();
                    i++;
                    if (i==1){
                        year =tempstr;
                        continue;
                    }else if (i==5&&Integer.parseInt(tempstr)!=-9999){  
                        int tepMax = Integer.parseInt(tempstr);
                        Maxtemp =Math.max(tepMax, Maxtemp);
                        context.write(new Text(year), new IntWritable(Maxtemp));
                        break;
                    }
    
                    }
    
                }
    
            }
    
        public static class TempReducer extends
                Reducer<Text, IntWritable, Text, IntWritable> {
    
            @Override
            protected void reduce(Text key, Iterable<IntWritable> values,
                    Reducer<Text, IntWritable, Text, IntWritable>.Context context)
                    throws IOException, InterruptedException {
                int Maxtem = Integer.MIN_VALUE;
                for (IntWritable value:values){
                    Maxtem = Math.max(Maxtem, value.get());
                }
                context.write(key, new IntWritable(Maxtem));
            }
    
        }
    
        public static void main(String[] args) throws Exception {
            int res = ToolRunner.run(new Configuration(), new Tempreature(), args);
            System.exit(res);
        }
    
        @Override
        public int run(String[] arg0) throws Exception {
            Configuration conf = getConf();
            Job job = new Job(conf,"MaxTem");//任务名
            job.setJarByClass(Tempreature.class);//指定class
                //输入和输出流
            FileInputFormat.addInputPath(job, new Path(arg0[0]));
            FileOutputFormat.setOutputPath(job, new Path(arg0[1]));    
            job.setMapperClass(TemMapper.class);//map
            job.setReducerClass(TempReducer.class);
            job.setCombinerClass(TempReducer.class);
            job.setOutputValueClass(IntWritable.class);
            job.setOutputKeyClass(Text.class);
            job.waitForCompletion(true);
            return job.isSuccessful()?0:1;
    
        }
    
    }
    

    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    突破极验验证的验证码
    c# 自定义多选下拉列表2
    c#多选下拉框(ComboBox)
    图片缩放+拖动(html)
    使用天天模拟器开发android应用
    FineUI开源版之TreeGrid(修改)
    FineUI开源版之TreeGrid实现
    c# 窗体最小化后截图实现
    c#一个简单的实例告诉你,多继承还可以这么来
    设置控件Enable=false,控件颜色不变
  • 原文地址:https://www.cnblogs.com/mrcharles/p/4731744.html
Copyright © 2011-2022 走看看