码迷,mamicode.com
首页 > 其他好文 > 详细

MapReduce实验

时间:2020-07-09 15:08:03      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:cer   iterable   log   int   OLE   system   oid   操作   pac   

承接上一篇,NoSQL实验

MapReduce实验

如何在Eclipse中运行MapReduce程序,参考厦大数据库实验室博客
总体代码:

package org.apache.hadoop.examples;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.StringTokenizer;
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;

public class Prac1 {

	public static void main(String[] args) throws IOException, ClassNotFoundException, InterruptedException {
		Configuration conf = new Configuration();
		Job job = Job.getInstance(conf);
		job.setJarByClass(Prac1.class);

		int cmd = 1;
		String[] file = {"input"+cmd,"output"+cmd};
		if(cmd==1) 
		{			
			job.setMapperClass(Prac1.Mapper1.class);
			job.setCombinerClass(Prac1.Reducer1.class);
			job.setReducerClass(Prac1.Reducer1.class);
			job.setOutputKeyClass(Text.class);
			job.setOutputValueClass(Text.class);
			FileInputFormat.setInputPaths(job, new Path(file[0]));
			FileOutputFormat.setOutputPath(job, new Path(file[1]));
			
		}else if(cmd==2)
		{			
			job.setMapperClass(Prac1.Mapper2.class);
			job.setReducerClass(Prac1.Reducer2.class);
			job.setOutputKeyClass(IntWritable.class);
			job.setOutputValueClass(IntWritable.class);
			FileInputFormat.setInputPaths(job, new Path(file[0]));
			FileOutputFormat.setOutputPath(job, new Path(file[1]));
		}else
		{			
			job.setMapperClass(Prac1.Mapper3.class);
			job.setReducerClass(Prac1.Reducer3.class);
			job.setOutputKeyClass(Text.class);
			job.setOutputValueClass(Text.class);
			FileInputFormat.setInputPaths(job, new Path(file[0]));
			FileOutputFormat.setOutputPath(job, new Path(file[1]));
		}
		System.exit(job.waitForCompletion(true)?0:1);
	}

1.编程实现文件合并和去重操作

对于两个输入文件,即文件A和文件B,请编写MapReduce程序,对两个文件进行合并,并剔除其中重复的内容,得到一个新的输出文件C。下面是输入文件和输出文件的一个样例供参考。
输入文件A的样例如下:
20150101 x
20150102 y
20150103 x
20150104 y
20150105 z
20150106 x
输入文件B的样例如下:
20150101 y
20150102 y
20150103 x
20150104 z
20150105 y
根据输入文件A和B合并得到的输出文件C的样例如下:
20150101 x
20150101 y
20150102 y
20150103 x
20150104 y
20150104 z
20150105 y
20150105 z
20150106 x

设计思路:

操作 <key, value>
map()读取 每一行的行号 每一项内容,例如"20150104 z"
map()输出 读取的value,每一项内容 空白Text,只是占位表示一下
reduce()读取 独立的每一项内容 空白Text的迭代器
reduce()输出 独立的每一项内容 空白Text,只是占位表示一下

Java代码

public static class Mapper1 extends Mapper<Object,Text,Text,Text>
{
   public void map(Object key,Text value,Mapper<Object,Text,Text,Text>.Context context) throws IOException, InterruptedException
   {
   	context.write(value, new Text(""));
   }
}

public static class Reducer1 extends Reducer<Text,Text,Text,Text>
{
   
   public void reduce(Text key,Iterable<Text> values,Reducer<Text,Text,Text,Text>.Context context) throws IOException,InterruptedException
   {
   	context.write(key, new Text(""));
   }
}

技术图片

2. 编写程序实现对输入文件的排序

现在有多个输入文件,每个文件中的每行内容均为一个整数。要求读取所有文件中的整数,进行升序排序后,输出到一个新的文件中,输出的数据格式为每行两个整数,第一个数字为第二个整数的排序位次,第二个整数为原待排列的整数。下面是输入文件和输出文件的一个样例供参考。
输入文件1的样例如下:
33
37
12
40
输入文件2的样例如下:
4
16
39
5
输入文件3的样例如下:
1
45
25
根据输入文件1、2和3得到的输出文件如下:
1 1
2 4
3 5
4 12
5 16
6 25
7 33
8 37
9 39
10 40
11 45

设计思路:

操作 <key, value>
map()读取 文件每一行的行号 每一行的数字
map()输出 每一行的数字 1,无意义,标识字符
reduce()读取 排序好的数字 1,无意义,标识字符
reduce()输出 序号 排序好的数字
  • 序号:编写的Reducer类中继承了原生的Reducer类中,重载了reduce函数,并且引入了一个记数的全局变量(static标记),每接收一个<key,value>便加一。
  • 疑惑之处:在map以后的shuffle是看不到的,MapReduce框架中就包含了shulffle并且在shuffle中就包含了排序,但是按照我的理解在shuffle中的排序应该只是针对一个map的机器或者是任务才对,(模糊记得要先到缓存再到磁盘,所以我在网上看到许多同学都是用了partion归类,我不知道有啥用,我觉得我这个程序能完成任务的原因可能是我才用的是伪分布式安装的hadoop,只有一台机器。(????)

Java代码

public static class Mapper2 extends Mapper<Object,Text,IntWritable,IntWritable>
{
	public void map(Object key,Text value,Context context) throws IOException, InterruptedException
	{
		IntWritable data = new IntWritable();
		data.set(Integer.parseInt(value.toString()));
		context.write(data, new IntWritable(1));
	}
}

public static class Reducer2 extends Reducer<IntWritable,IntWritable,IntWritable,IntWritable>
{
	private static int sum = 1;
	public void reduce(IntWritable key,Iterable<IntWritable> values,Context context) throws IOException, InterruptedException
	{
		for(IntWritable num:values) 
		{
			context.write(new IntWritable(sum),key);
			sum++;//可能存在重复的数字
		}
	}
}

技术图片

3. 对给定的表格进行信息挖掘

下面给出一个child-parent的表格,要求挖掘其中的父子辈关系,给出祖孙辈关系的表格。
输入文件内容如下:
child parent
Steven Lucy
Steven Jack
Jone Lucy
Jone Jack
Lucy Mary
Lucy Frank
Jack Alice
Jack Jesse
David Alice
David Jesse
Philip David
Philip Alma
Mark David
Mark Alma
输出文件内容如下:
grandchild grandparent
Steven Alice
Steven Jesse
Jone Alice
Jone Jesse
Steven Mary
Steven Frank
Jone Mary
Jone Frank
Philip Alice
Philip Jesse
Mark Alice
Mark Jesse

设计思路:

操作 <key, value>
map()读取 每一行的行号 子辈和父辈的内容
map()输出 针对每一行都输出两次,第一次是子辈,第二次是父辈 第一次是父辈,第二次是子辈
reduce()读取 1.接收到子辈 父辈
reduce()读取 2.接收到父辈 一定有子辈,可能存在祖辈
reduce()读取 3.接收到祖辈 父辈
reduce()输出 子辈 祖辈

上述的子辈、父辈和祖辈都是相较而言的。比如如果四世同堂的话,第三世相较于第一世是子辈,相较于第四世是父辈。
每接收到一份数据,交换顺序输出两次,在shuffle中按照键值归并,这样就能将存在祖辈和子辈的数据找出来,并且为了不将祖辈和子辈混淆,在map输出的value中标记是old还是young。

Java代码

public static class Mapper3 extends Mapper<Object,Text,Text,Text>
{
	public void map(Object key,Text value,Context context) throws IOException, InterruptedException
	{
		String[] splStr = value.toString().split(" ");
		String child = splStr[0];
		String parent = splStr[1];
		
		if(child.equals("child")&&parent.equals("parent"))
			return;
		context.write(new Text(child), new Text("old#"+parent));
		context.write(new Text(parent), new Text("young#"+child));
	}
}

public static class Reducer3 extends Reducer<Text,Text,Text,Text>
{
	private static boolean head = true ;
	public void reduce(Text key,Iterable<Text> values,Context context) throws IOException, InterruptedException
	{
		if(head)
		{
			context.write(new Text("grandchild"), new Text("grandparent"));
			head = false;
		}
		ArrayList<String> grandchild = new ArrayList<String>();
		ArrayList<String> grandparent = new ArrayList<String>();
		String[] temp;
		for(Text val:values)
		{
			temp = val.toString().split("#");
			if(temp[0].equals("young"))
				grandchild.add(temp[1]);
			else
				grandparent.add(temp[1]);
		}
		if(gc.size()==0||gp.size()==0)
                        return;
		for(String gc:grandchild)
			for(String gp:grandparent)
					context.write(new Text(gc), new Text(gp));
	}
}

技术图片

人生此处,绝对乐观

MapReduce实验

标签:cer   iterable   log   int   OLE   system   oid   操作   pac   

原文地址:https://www.cnblogs.com/ginkgo-/p/13273671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!