标签:
本文主要介绍下二次排序的实现方式
我们知道MapReduce是按照key来进行排序的,那么如果有个需求就是先按照第一个字段排序,在第一个字段相等的情况下,按照第二个字段排序,这就是传说中的二次排序。
下面就具体说一下二次排序的实现方式
主要就是4点
1.自定义一个Key
为什么要自定义一个Key,我们知道MapReduce中排序就是按照Key来排序的,我们既然想要实现按照两个字段进行排序,默认的方式肯定是不行的,所以自定义一个新的Key,Key里面有两个属性,也就是我们要排序的两个字段。
首先,实现WritableComparable接口,因为Key是可序列化并且可以比较的。其次,重载相关的方法,例如序列化、反序列化相关的方法write()、readFields()。重载在分区的时候要用到的hashCode()方法,注意后面会说到一个Partitioner类,也是用来分区的,用hashCode()方法和Partitioner类进行分区都是可以的,使用其中的一个即可。重载排序用的compareTo()方法。
2.分区函数类
上面定义了一个新的Key,那么我现在做分发,到底按照什么样的规则进行分发是在分区函数中定义的,这个类要继承Partitioner类,重载其中的分区方法getPartition(),在main()函数里面给job添加上即可,例如:job.setPartitionerClass(XXX.class);
注:这个类的作用和新Key中的hashCode()方法作用一样,所以如果在新key的hashCode()方法中写了分区的实现,这个分区类是可以省略的。
3.比较函数类
这个类决定着Key的排序规则,是一个比较器,需要继承WritableComparator类,并且重载其中的compare()方法。在main()函数里给job添加上即可,例如:job.setSortComparatorClass(XXX.class);
注:这个类的作用跟自定义Key的compareTo()方法一样,如果在自定义的Key中重载了compareTo()方法,这个类是可以省略的。
4.分组函数类
通过分区类,我们重新定义了key的分区规则,但是多个key不同的也可以进入一个reduce中,这不是我们想要的,我们需要分区函数来定义什么样的key可以进入相应的reduce来执行,因为也涉及到比较,所以这个类也需要继承WritableComparator,也可以实现RawComparator,并且重载其中的compare()方法,在main()函数中给job加上即可,如:job.setGroupingComparatorClass(XXX.class)。
下面我们来重新简化一下上一篇文章中提到了例子:
#需求:第一列升序,第一列相同时,第二列升序,其第一列相同的放在一个分区中输出
- sort1 1
- sort2 3
- sort2 88
- sort2 54
- sort1 2
- sort6 22
- sort6 888
- sort6 58
#预期输出结果
#part-r-00000文件
#part-r-00001文件
- sort2 3
- sort2 54
- sort2 88
#part-r-00002
- sort6 22
- sort6 58
- sort6 888
1.自定义组合键
- public class CombinationKey implements WritableComparable<CombinationKey>{
-
- private Text firstKey;
- private IntWritable secondKey;
-
-
- public CombinationKey() {
- this.firstKey = new Text();
- this.secondKey = new IntWritable();
- }
-
-
- public CombinationKey(Text firstKey, IntWritable secondKey) {
- this.firstKey = firstKey;
- this.secondKey = secondKey;
- }
-
- public Text getFirstKey() {
- return firstKey;
- }
-
- public void setFirstKey(Text firstKey) {
- this.firstKey = firstKey;
- }
-
- public IntWritable getSecondKey() {
- return secondKey;
- }
-
- public void setSecondKey(IntWritable secondKey) {
- this.secondKey = secondKey;
- }
-
- public void write(DataOutput out) throws IOException {
- this.firstKey.write(out);
- this.secondKey.write(out);
- }
-
- public void readFields(DataInput in) throws IOException {
- this.firstKey.readFields(in);
- this.secondKey.readFields(in);
- }
-
-
- public int compareTo(CombinationKey combinationKey) {
- int minus = this.getFirstKey().compareTo(combinationKey.getFirstKey());
- if (minus != 0){
- return minus;
- }
- return this.getSecondKey().get() - combinationKey.getSecondKey().get();
- }
-
-
-
- @Override
- public int hashCode() {
- final int prime = 31;
- int result = 1;
- result = prime * result + ((firstKey == null) ? 0 : firstKey.hashCode());
- return result;
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj)
- return true;
- if (obj == null)
- return false;
- if (getClass() != obj.getClass())
- return false;
- CombinationKey other = (CombinationKey) obj;
- if (firstKey == null) {
- if (other.firstKey != null)
- return false;
- } else if (!firstKey.equals(other.firstKey))
- return false;
- return true;
- }
-
-
- }
2.自定义分组
- public class DefinedGroupSort extends WritableComparator{
-
-
- protected DefinedGroupSort() {
- super(CombinationKey.class,true);
- }
-
- @Override
- public int compare(WritableComparable a, WritableComparable b) {
- System.out.println("---------------------进入自定义分组---------------------");
- CombinationKey combinationKey1 = (CombinationKey) a;
- CombinationKey combinationKey2 = (CombinationKey) b;
- System.out.println("---------------------分组结果:" + combinationKey1.getFirstKey().compareTo(combinationKey2.getFirstKey()));
- System.out.println("---------------------结束自定义分组---------------------");
-
- return combinationKey1.getFirstKey().compareTo(combinationKey2.getFirstKey());
- }
-
-
- }
3.自定义分区
- public class DefinedPartition extends Partitioner<CombinationKey, IntWritable> {
-
-
- public int getPartition(CombinationKey key, IntWritable value, int numPartitions) {
-
- if (key.getFirstKey().toString().endsWith("1")){
- return 0;
- } else if (key.getFirstKey().toString().endsWith("2")){
- return 1;
- } else {
- return 2;
- }
- }
-
- }
4.主类
- public class SecondSortMapReduce extends Configured implements Tool{
-
-
- private String INPUT_PATH = "";
-
- private String OUT_PATH = "";
-
- public static void main(String[] args) {
-
- try {
- ToolRunner.run(new SecondSortMapReduce(), args);
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
-
-
- public static class SecondSortMapper extends Mapper<Text, Text, CombinationKey, IntWritable>{
-
- private CombinationKey combinationKey = new CombinationKey();
- Text sortName = new Text();
- IntWritable score = new IntWritable();
- String[] splits = null;
- protected void map(Text key, Text value, Mapper<Text, Text, CombinationKey, IntWritable>.Context context) throws IOException, InterruptedException {
- System.out.println("---------------------进入map()函数---------------------");
-
- if (key == null || value == null || key.toString().equals("")){
- return;
- }
-
- sortName.set(key.toString());
- score.set(Integer.parseInt(value.toString()));
-
- combinationKey.setFirstKey(sortName);
- combinationKey.setSecondKey(score);
-
-
- context.write(combinationKey, score);
- System.out.println("---------------------结束map()函数---------------------");
- }
-
- }
-
-
- public static class SecondSortReducer extends Reducer<CombinationKey, IntWritable, Text, Text>{
-
- StringBuffer sb = new StringBuffer();
- Text score = new Text();
-
- protected void reduce(CombinationKey key, Iterable<IntWritable> values, Reducer<CombinationKey, IntWritable, Text, Text>.Context context)
- throws IOException, InterruptedException {
-
-
- for (IntWritable val : values){
- context.write(key.getFirstKey(), new Text(String.valueOf(val.get())));
- }
-
-
- }
- }
-
-
- public int run(String[] args) throws Exception {
-
- INPUT_PATH = args[0];
- OUT_PATH = args[1];
- try {
-
- Configuration conf = new Configuration();
- conf.set(KeyValueLineRecordReader.KEY_VALUE_SEPERATOR, "\t");
-
-
- FileSystem fileSystem = FileSystem.get(new URI(OUT_PATH), conf);
-
- if (fileSystem.exists(new Path(OUT_PATH))) {
- fileSystem.delete(new Path(OUT_PATH), true);
- }
-
-
- Job job = new Job(conf, SecondSortMapReduce.class.getName());
-
- job.setJarByClass(SecondSortMapReduce.class);
-
- FileInputFormat.setInputPaths(job, INPUT_PATH);
- job.setInputFormatClass(KeyValueTextInputFormat.class);
-
-
- job.setMapperClass(SecondSortMapper.class);
- job.setMapOutputKeyClass(CombinationKey.class);
- job.setMapOutputValueClass(IntWritable.class);
-
-
- job.setPartitionerClass(DefinedPartition.class);
- job.setNumReduceTasks(3);
-
-
- job.setGroupingComparatorClass(DefinedGroupSort.class);
-
-
-
-
-
-
-
- job.setReducerClass(SecondSortReducer.class);
- job.setOutputKeyClass(Text.class);
- job.setOutputValueClass(Text.class);
-
-
- FileOutputFormat.setOutputPath(job, new Path(OUT_PATH));
- job.setOutputFormatClass(TextOutputFormat.class);
-
-
-
- System.exit(job.waitForCompletion(true) ? 0 : 1);
-
- } catch (Exception e) {
- e.printStackTrace();
- }
- return 0;
- }
- }
注:使用jar包的方式运行程序一定不要忘记很重要的一句:job.setJarByClass(XXX);
程序运行的结果:
MapReduce二次排序
标签:
原文地址:http://www.cnblogs.com/thinkpad/p/5173743.html