Hadoop实现MR程序模拟实现天气数据获取两次最高温度

数据

1949-10-01 14:21:02	34c
1949-10-01 19:21:02	38c
1949-10-02 14:01:02	36c
1950-01-01 11:21:02	32c
1950-10-01 12:21:02	37c
1951-12-01 12:21:02	23c
1950-10-02 12:21:02	41c
1950-10-03 12:21:02	27c
1951-07-01 12:21:02	45c
1951-07-02 12:21:02	46c
1951-07-03 12:21:03	47c

主程序

package com.zyd.tq;

import java.io.IOException;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;



public class TQRunner {
	public static void main(String[] args) throws IOException, ClassNotFoundException, InterruptedException {
		//1 获取文件系统
		Configuration conf = new Configuration();
		
		Job job = Job.getInstance(conf);
		
		job.setJarByClass(TQRunner.class);
		job.setJobName("TQ");
		//读
		FileInputFormat.addInputPath(job, new Path(args[0]));
		FileOutputFormat.setOutputPath(job, new Path(args[1]));
		//map操作
		job.setMapperClass(TQMapper.class);
		//Reduce操作
		job.setReducerClass(TQReducer.class);
		//map的输出的key和value都是Text
		job.setMapOutputKeyClass(Text.class);
		//如果key不对 启动任务时候报unable to initialize any output collect
		job.setMapOutputValueClass(Text.class);
		job.waitForCompletion(true);
	}
}

map阶段代码:

package com.zyd.tq;

import java.io.IOException;

import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Mapper;

/**
 * 
 * @author Administrator
 *传入输入的key value 输入的key value
 *key 精确到年月 value是度数 是字符串
 */

public class TQMapper extends Mapper<Object, Text, Text, Text>{

	
	@Override
	/**
	 * 重写map方法
	 * 
	 */
	protected void map(Object key, Text value,
			Mapper<Object, Text, Text, Text>.Context context)
			throws IOException, InterruptedException {
		//时间和温度是按制表符隔开的
		String[] split = value.toString().split("\t");
		//时间
		String time = split[0];
		//温度
		String wd = split[1];
		
		context.write(new Text(time.substring(0,7)),new Text(wd));
		
	}

}

Reduce阶段:

	package com.zyd.tq;
	
	import java.io.IOException;
	import java.util.ArrayList;
	import java.util.Collections;
	import java.util.Iterator;
	
	import org.apache.hadoop.io.Text;
	import org.apache.hadoop.mapreduce.Reducer;
	
	/**
	 * 
	 * @author Administrator
	 *根据map分区后 <text,text>
	 */
	public class TQReducer extends Reducer<Text, Text, Text, Text> {
	
		@Override
		/**
		 * 相同的key为一组
		 * 
		 * iterable是同一个月里面所有的温度,是所有的map直接拉过来以后的
		 */
		protected void reduce(Text key, Iterable<Text> iterable,
				Reducer<Text, Text, Text, Text>.Context context) throws IOException,
				InterruptedException {
			ArrayList<String> list = new ArrayList<String>();
			for(Text text : iterable){
				list.add(text.toString());
			}
			//按照字典排序
			Collections.sort(list);
			
			//得到最高的两个温度  即下标的最后两个
			String maxWD = list.get(list.size()-1);
			String tmp = "";
			if (list.size()>=2) {
				String secondWD = list.get(list.size()-2);
				tmp = ":"+secondWD;
			}
			
			context.write(key,new Text(maxWD+tmp));
		}
	}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值