MapReduce JavaAPI编程

去重

/*数据去重*/

package com.Merge;

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.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.GenericOptionsParser;

public class Merge {
	/**
	 * @param args
	 * 对A,B两个文件进行合并,并剔除其中重复的内容,得到一个新的输出文件C
	 */
	//重载map函数,直接将输入中的value复制到输出数据的key上
	public static class Map extends Mapper<Object, Text, Text, Text>{
		private static Text text = new Text();
		public void map(Object key, Text value, Context context) throws IOException,InterruptedException{
			text = value;
			context.write(text, new Text(""));//置为空值
		}
	}

	//重载reduce函数,直接将输入中的key复制到输出数据的key上
	public static class Reduce extends Reducer<Text, Text, Text, Text>{
		public void reduce(Text key, Iterable<Text> values, Context context ) throws IOException,InterruptedException{
			context.write(key, new Text(""));//置为空值
/*文件读取为
	  第一行<0,<xx>>		map处理<xx,  null>	shuffle处理<xx,n>
	 第二行<1,<**>>
*/
		}
	}

	public static void main(String[] args) throws Exception{
		// TODO Auto-generated method stub
		Configuration conf = new Configuration();
		conf.set("fs.default.name","hdfs://localhost:9000");
		String[] otherArgs = new String[]{"input","output"}; /* 直接设置输入参数 */
		if (otherArgs.length != 2) {
			System.err.println("Usage: wordcount <in> <out>");
			System.exit(2);
			}
        Job job = Job.getInstance(conf,"Merge and duplicate removal");
		job.setJarByClass(Merge.class);
		job.setMapperClass(Map.class);
		job.setCombinerClass(Reduce.class);
		job.setReducerClass(Reduce.class);
		job.setOutputKeyClass(Text.class);
		job.setOutputValueClass(Text.class);
		FileInputFormat.addInputPath(job, new Path(otherArgs[0]));
		FileOutputFormat.setOutputPath(job, new Path(otherArgs[1]));
		System.exit(job.waitForCompletion(true) ? 0 : 1);
	}

}

排序(不去重)

package com.MergeSort;

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.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Partitioner;
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.GenericOptionsParser;

public class MergeSort {
	/**
	 * @param args
	 * 输入多个文件,每个文件中的每行内容均为一个整数
	 * 输出到一个新的文件中,输出的数据格式为每行两个整数,第一个数字为第二个整数的排序位次,第二个整数为原待排列的整数
	 */
	//map函数读取输入中的value,将其转化成IntWritable类型,最后作为输出key
	public static class Map extends Mapper<Object, Text, IntWritable, IntWritable>{

		private static IntWritable data = new IntWritable();
		//用户修改部分	去重 + 排序
		public void map(Object key, Text value, Context context) throws IOException,InterruptedException{
			String text = value.toString();

			data.set(Integer.parseInt(text));
			context.write(data, new IntWritable(1));//输出 <1,33>
		}
	}

	//reduce函数将map输入的key复制到输出的value上,然后根据输入的value-list中元素的个数决定key的输出次数,定义一个全局变量line_num来代表key的位次
	public static class Reduce extends Reducer<IntWritable, IntWritable, IntWritable, IntWritable>{
		private static IntWritable line_num = new IntWritable(1);

		public void reduce(IntWritable key, Iterable<IntWritable> values, Context context) throws IOException,InterruptedException{
			for(IntWritable val : values){
				context.write(line_num, key);
				line_num = new IntWritable(line_num.get() + 1);
			}
		}
	}

	//自定义Partition函数,此函数根据输入数据的最大值和MapReduce框架中Partition的数量获取将输入数据按照大小分块的边界,然后根据输入数值和边界的关系返回对应的Partiton ID
	public static class Partition extends Partitioner<IntWritable, IntWritable>{
		public int getPartition(IntWritable key, IntWritable value, int num_Partition){
			int Maxnumber = 65223;//int型的最大数值
			int bound = Maxnumber/num_Partition+1;
			int keynumber = key.get();
			for (int i = 0; i<num_Partition; i++){
				if(keynumber<bound * (i+1) && keynumber>=bound * i){
					return i;
				}
			}
			return -1;
		}
	}

	public static void main(String[] args) throws Exception{
		// TODO Auto-generated method stub
		Configuration conf = new Configuration();
		conf.set("fs.default.name","hdfs://localhost:9000");
		String[] otherArgs = new String[]{"input","output"}; /* 直接设置输入参数 */
		if (otherArgs.length != 2) {
			System.err.println("Usage: wordcount <in> <out>");
			System.exit(2);
			}
		Job job = Job.getInstance(conf,"Merge and Sort");
		job.setJarByClass(MergeSort.class);
		job.setMapperClass(Map.class);
		job.setReducerClass(Reduce.class);
		job.setPartitionerClass(Partition.class);
		job.setOutputKeyClass(IntWritable.class);
		job.setOutputValueClass(IntWritable.class);
		FileInputFormat.addInputPath(job, new Path(otherArgs[0]));
		FileOutputFormat.setOutputPath(job, new Path(otherArgs[1]));
		System.exit(job.waitForCompletion(true) ? 0 : 1);

	}
}

排序(去重)测试--未去重

package mapreduce;
import java.io.IOException;
import java.util.HashSet;  
import java.util.List;
import java.util.Set;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;

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.Partitioner;
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.GenericOptionsParser;

public class sortplus {
	/**
     * @param args
	 * 输入多个文件,每个文件中的每行内容均为一个整数,map函数读取输入中的value,map函数读取输入中的键和值分别是什么:
键 (Key): 文件的路径或名称。在MapReduce中,键是用来标识输入数据的唯一标识符。在这个例子中,键可以是文件的路径或文件名。
值 (Value): 整数值本身。在这个场景中,每行的整数内容是作为值来处理的。
	 * 输出到一个新的文件中,输出的数据格式为每行两个整数,第一个数字为第二个整数的排序位次,第二个整数为原待排列的整数	 */
	//map函数读取输入中的value,将其转化成IntWritable类型,最后作为输出key
    //在Hadoop MapReduce中,Mapper的主要任务是从输入数据中提取键值对,进行一些处理。
	//输入的键和值都是Object和Text类型,而输出的键和值都是IntWritable类型
    //Object,这是Mapper的输入键的类,意味着输入键可以是任何类型
    //Text:这是Mapper的输入值的类型。在Hadoop MapReduce中,Text类通常用于表示字符串
    //IntWritable:这是Mapper的输出键/值的类型。输出键是整数值的可写的版本
	public static class Map extends Mapper<Object, Text, IntWritable, IntWritable> {  
	    private static IntWritable data = new IntWritable();  
	    // 用户修改部分:去重 + 排序
        private Set<Integer> uniqueValues = new HashSet<Integer>(); // 用于存储去重后的值     
	    //这是Hadoop MapReduce编程模型中的map函数的标准签名。该函数用于处理输入数据并产生中间键值对。
        //Object key:这是输入数据的键。在大多数情况下,你会希望将它强制转换为更有意义的类型,如IntWritable、LongWritable等,以方便处理
        //Text value:这是与输入键关联的值
        //Context context:这是MapReduce框架提供的一个上下文对象,允许你与MapReduce框架进行交互
        public void map(Object key, Text value, Context context) throws IOException, InterruptedException {  
	        String text = value.toString();  
	        int intValue = Integer.parseInt(text);    
	        if (!uniqueValues.contains(intValue)) { // 检查是否重复  
	            uniqueValues.add(intValue);  
	            data.set(intValue);  
	            context.write(data, new IntWritable(intValue)); // 输出 <key, value>,这里的key用于排序  
	        }  
	    }  
	}  

	//这是Hadoop MapReduce编程模型中的reduce函数的标准签名。这个函数用于处理在map阶段产生的中间键值对并输出结果。
    //函数参数分别是是Reducer的输入的键的类型、输入的值的类型和输出的键的类型、输出的值的类型。
	public static class Reduce extends Reducer<IntWritable, IntWritable, IntWritable, IntWritable> {  
	    private static IntWritable line_num = new IntWritable(1);  
	    // 用户修改部分:根据输入的value-list中元素的个数决定key的输出次数,定义一个全局变量line_num来代表key的位次
        //  IntWritable key:这是输入的键,通常在Map阶段生成的中间键。
        //  Iterable<IntWritable> values:这是一个包含与键关联的值的集合。这些值通常来自Map阶段的输出。
        //  Context context:这是MapReduce框架提供的一个上下文对象,允许你与MapReduce框架进行交互
	    public void reduce(IntWritable key, Iterable<IntWritable> values, Context context) throws IOException, InterruptedException {  
	    	List<IntWritable> sortedValues = new ArrayList<IntWritable>();
	    	for (IntWritable val : values) { 
	        	sortedValues.add(val);
	        }
	        Collections.sort(sortedValues, Comparator.comparingInt(IntWritable::get));
	        for (IntWritable val : sortedValues) {
	            context.write(line_num, val); // 输出排序后的值  
	            line_num = new IntWritable(line_num.get() + 1);  
	        }  
	    }  
	}

	//自定义Partition函数,此函数根据输入数据的最大值和MapReduce框架中Partition的数量获取将输入数据按照大小分块的边界,然后根据输入数值和边界的关系返回对应的Partiton ID
	public static class Partition extends Partitioner<IntWritable, IntWritable>{
		public int getPartition(IntWritable key, IntWritable value, int num_Partition){
			int Maxnumber = 65223;//int型的最大数值
			int bound = Maxnumber/num_Partition+1;
			int keynumber = key.get();
			for (int i = 0; i<num_Partition; i++){
				if(keynumber<bound * (i+1) && keynumber>=bound * i){
					return i;
				}
			}
			return -1;
		}
	}

	public static void main(String[] args) throws Exception{
		// TODO Auto-generated method stub
		Configuration conf = new Configuration();
		conf.set("fs.default.name","hdfs://localhost:9000");
		String[] otherArgs = new String[]{"input","output"}; /* 直接设置输入参数 */
		if (otherArgs.length != 2) {
			System.err.println("Usage: wordcount <in> <out>");
			System.exit(2);
			}
		Job job = Job.getInstance(conf,"Merge and Sort");
		job.setJarByClass(sortplus.class);
		job.setMapperClass(Map.class);
		job.setReducerClass(Reduce.class);
		job.setPartitionerClass(Partition.class);
		job.setOutputKeyClass(IntWritable.class);
		job.setOutputValueClass(IntWritable.class);
		FileInputFormat.addInputPath(job, new Path(otherArgs[0]));
		FileOutputFormat.setOutputPath(job, new Path(otherArgs[1]));
		System.exit(job.waitForCompletion(true) ? 0 : 1);
	}
}

  • 12
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
MapReduce是一种用于大规模数据处理的编程模型和算法。它将大规模数据集分成小的数据块,然后在集群中的多台计算机上并行处理这些数据块。MapReduce API是一种用于实现MapReduce算法的编程接口。以下是一个简单的MapReduce API的例子: ```java public class WordCount { public static class Map extends Mapper<LongWritable, Text, Text, IntWritable> { private final static IntWritable one = new IntWritable(1); private Text word = new Text(); public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException { String line = value.toString(); StringTokenizer tokenizer = new StringTokenizer(line); while (tokenizer.hasMoreTokens()) { word.set(tokenizer.nextToken()); context.write(word, one); } } } public static class Reduce extends Reducer<Text, IntWritable, Text, IntWritable> { public void reduce(Text key, Iterable<IntWritable> values, Context context) throws IOException, InterruptedException { int sum = 0; for (IntWritable val : values) { sum += val.get(); } context.write(key, new IntWritable(sum)); } } public static void main(String[] args) throws Exception { Configuration conf = new Configuration(); Job job = new Job(conf, "wordcount"); job.setJarByClass(WordCount.class); job.setOutputKeyClass(Text.class); job.setOutputValueClass(IntWritable.class); job.setMapperClass(Map.class); job.setReducerClass(Reduce.class); job.setInputFormatClass(TextInputFormat.class); job.setOutputFormatClass(TextOutputFormat.class); FileInputFormat.addInputPath(job, new Path(args[0])); FileOutputFormat.setOutputPath(job, new Path(args[1])); job.waitForCompletion(true); } } ``` 这个例子是一个简单的WordCount程序,它将输入文件中的单词计数,并将结果写入输出文件。Map函数将输入文件中的每一行拆分成单词,并将每个单词映射到一个键值对,其中键是单词,值是1。Reduce函数将相同键的值相加,并将结果写入输出文件。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值