MapReduce之distinct

来源:互联网 发布:网络直播服务器 编辑:程序博客网 时间:2024/06/01 21:23
适用场景:
当我们希望去除数据集中的重复数据或者某些字段重复的数据就可以使用这个模式。

结构:
这个模式使用了MapReduce框架的功能,将相同的key分组到一起来实现去重。这个模式使用mapper做数据的转换,在reducer中不需要做太多工作。在这个模式中可以使用combiner,如果有大量重复的数据,combiner将非常有用。重复的记录在数据集中经常会相对邻近,因此combiner可以在map阶段实现去重。
reducer基于key将null值分组,因此对每一个key我们将得到一个null值。然后简单地输出key,因此我们不关心有多少个null值。因为每个Key是分组到一起的,这个输出数据集将保证是唯一的。
这个模式中的一个好的特性是,对计算本身来讲,reducer的数目并不重要。因为mapper通常会将几乎所有的数据传输到reducer,因此可以将reducer的数目设置得相对高一些。

已知应用:
1.数据去重
如果你的一个系统有多个数据收集源,并可能对同一个事件记录两次,那么你可以使用这种模式对数据去重。
2.抽取重复值
如果你的原始记录不是重复的,但抽取出来的信息是重复的,这个模式也将非常有效。

下面看一个示例:
输入文件如下:
name sex age remark

张三 男 20 备注1
张三 男 20 备注2
张三 女 20 备注1
李四 男 21 备注1
李四 男 21 备注3
王五 女 20 备注

我们认为name、sex、age相同就表示是同一条数据,即便remark不同。然后对数据进行去重。
package com.mr.distinct;import java.io.DataInput;import java.io.DataOutput;import java.io.IOException;import org.apache.hadoop.io.Text;import org.apache.hadoop.io.WritableComparable;/** * @author luobao * */public class Person implements WritableComparable<Person> {private Text name;private Text sex;private Text age;private Text remark;public Person() {this.name = new Text();this.sex = new Text();this.age = new Text();this.remark = new Text();}@Overridepublic void readFields(DataInput paramDataInput) throws IOException {this.name.readFields(paramDataInput);this.sex.readFields(paramDataInput);this.age.readFields(paramDataInput);this.remark.readFields(paramDataInput);}@Overridepublic void write(DataOutput paramDataOutput) throws IOException {this.name.write(paramDataOutput);this.sex.write(paramDataOutput);this.age.write(paramDataOutput);this.remark.write(paramDataOutput);}@Overridepublic int compareTo(Person person) {// 这里定制distinct哪些字段,现在是忽略remark字段的定制Text t = new Text(this.name.toString() + this.sex.toString()+ this.age.toString());return t.compareTo(new Text(person.getName().toString()+ person.getSex().toString() + person.getAge().toString()));}public Text getName() {return name;}public void setName(Text name) {this.name = name;}public Text getSex() {return sex;}public void setSex(Text sex) {this.sex = sex;}public Text getAge() {return age;}public void setAge(Text age) {this.age = age;}public Text getRemark() {return remark;}public void setRemark(Text remark) {this.remark = remark;}@Overridepublic String toString() {return "Person [name=" + name + ", sex=" + sex + ", age=" + age+ ", remark=" + remark + "]";}}
package com.mr.distinct;import java.io.IOException;import java.net.URI;import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.fs.FileSystem;import org.apache.hadoop.fs.Path;import org.apache.hadoop.io.NullWritable;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;/** * @author luobao * */public class Distinct {public static class DistinctUserMapper extendsMapper<Object, Text, Person, NullWritable> {public void map(Object key, Text value, Context context)throws IOException, InterruptedException {String[] personInfo = value.toString().split(" ");Person person = new Person();person.setName(new Text(personInfo[0]));person.setSex(new Text(personInfo[1]));person.setAge(new Text(personInfo[2]));person.setRemark(new Text(personInfo[3]));context.write(person, NullWritable.get());}}public static class DistinctUserReducer extendsReducer<Person, NullWritable, Person, NullWritable> {public void reduce(Person key, Iterable<NullWritable> values,Context context) throws IOException, InterruptedException {context.write(key, NullWritable.get());}}public static void main(String[] args) {try {Configuration conf = new Configuration();conf.addResource(new Path("log4j.properties.xml"));String ipPre = "hdfs://192.168.40.191:9000/";removeOutput(conf, ipPre);Job job = Job.getInstance(conf);job.setJarByClass(Distinct.class);job.setMapperClass(DistinctUserMapper.class);job.setReducerClass(DistinctUserReducer.class);job.setMapOutputKeyClass(Person.class);// map阶段的输出的keyjob.setMapOutputValueClass(NullWritable.class);// map阶段的输出的valuejob.setOutputKeyClass(Person.class);// reduce阶段的输出的keyjob.setOutputValueClass(NullWritable.class);// reduce阶段的输出的valueFileInputFormat.addInputPath(job,new Path(ipPre + "input/distinct"));FileOutputFormat.setOutputPath(job, new Path(ipPre + "output"));System.exit(job.waitForCompletion(true) ? 0 : 1);} catch (Exception e) {e.printStackTrace();}}private static void removeOutput(Configuration conf, String ipPre)throws IOException {String outputPath = ipPre + "output";FileSystem fs = FileSystem.get(URI.create(outputPath), conf);Path path = new Path(outputPath);if (fs.exists(path)) {fs.deleteOnExit(path);}fs.close();}}

输出结果:

Person [name=张三, sex=女, age=20, remark=备注1]

Person [name=张三, sex=男, age=20, remark=备注2]

Person [name=李四, sex=男, age=21, remark=备注3]

Person [name=王五, sex=女, age=20, remark=备注]


该模式的combiner可以复用reducer

0 0
原创粉丝点击