1. 程式人生 > >Hadoop2.7.3 mapreduce(一)原理及"hello world"例項

Hadoop2.7.3 mapreduce(一)原理及"hello world"例項

MapReduce程式設計模型

【1】先對輸入的資訊進行切片處理。

【2】每個map函式對所劃分的資料並行處理,產生不同的中間結果輸出。

【3】對map的中間結果資料進行收集整理(aggregate & shuffle)處理,交給reduce。

【4】reduce進行計算最終結果。

【5】彙總所有reduce的輸出結果。


【名詞解釋】

ResourceManager:是YARN資源控制框架的中心模組,負責叢集中所有的資源的統一管理和分配。它接收來自NM(NodeManager)的彙報,建立AM,並將資源派送給AM(ApplicationMaster)。

NodeManager:簡稱NM,NodeManager是ResourceManager在每臺機器的上代理,負責容器的管理,並監控他們的資源使用情況(cpu,記憶體,磁碟及網路等),以及向 ResourceManager提供這些資源使用報告。



ApplicationMaster:以下簡稱AM。YARN中每個應用都會啟動一個AM,負責向RM申請資源,請求NM啟動container,並告訴container做什麼事情。

Container:資源容器。YARN中所有的應用都是在container之上執行的。AM也是在container上執行的,不過AM的container是RM申請的。

用Java來實現WordCount單詞計數的功能

package com.yc.hadoop42_003_mapreduce;

import java.io.IOException;

import org.apache.hadoop.conf.Configuration;
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;

public class MyWordCount {

        //Mapper靜態內部類
	public static class MyWordCountMapper extends Mapper<LongWritable, Text, Text, IntWritable> {

		public static final IntWritable ONE = new IntWritable(1);

		@Override
		protected void map(LongWritable key, Text value, Mapper<LongWritable, Text, Text, IntWritable>.Context context)
				throws IOException, InterruptedException {
			//按空格分割,map預設的value是每一行
			String[] words = value.toString().split("\\s");

			for (String word : words) {
				context.write(new Text(word), ONE);
			}
		}
	}

        //Reducer靜態內部類
	public static class MyWordCountReducer extends Reducer<Text, IntWritable, Text, IntWritable> {

		@Override
		protected void reduce(Text key, Iterable<IntWritable> value,
				Reducer<Text, IntWritable, Text, IntWritable>.Context context)
				throws IOException, InterruptedException {
			int count = 0;
			for (IntWritable v : value) {
				count += v.get(); // 統計單詞個數
			}
			context.write(new Text(key), new IntWritable(count));
		}
	}

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

		Configuration conf = new Configuration(); // 配置檔案物件
		Job job = Job.getInstance(conf, "mywordCount"); // mapreduce作業物件

		// 設定map操作
		job.setMapperClass(MyWordCountMapper.class);	//設定map處理類
		job.setMapOutputKeyClass(Text.class);	//設定拆分後,輸出資料key的型別
		job.setMapOutputValueClass(IntWritable.class);	//設定拆分後,輸入資料value的型別

		// 設定reduce操作
		job.setReducerClass(MyWordCountReducer.class);	//設定reduce處理類 
						//這裡reduce輸入輸出格式一致,不需要再次設定

		// 設定輸入輸出
		FileInputFormat.setInputPaths(job, new Path("hdfs://master:9000/in/data03.txt"));// 設定處理資料檔案的位置
		FileOutputFormat.setOutputPath(job, new Path("hdfs://master:9000/result"));// 設定處理後文件的存放位置

		// 開始執行mapreduce作業
		job.waitForCompletion(true);
	}
}

【結果】