当前位置:   article > 正文

Hadoop经典案例Spark实现(三)——数据排序_spark 基于数据流程编排的处理

spark 基于数据流程编排的处理
Hadoop经典案例Spark实现(三)——数据排序


1、"数据排序"是许多实际任务执行时要完成的第一项工作,
比如学生成绩评比、数据建立索引等。这个实例和数据去重类似,都是先对原始数据进行初步处理,为进一步的数据操作打好基础。
1)、需求描述
 对输入文件中数据进行排序。输入文件中的每行内容均为一个数字,即一个数据。
 要求在输出中每行有两个间隔的数字,其中,第一个代表原始数据在原始数据集中的位次,第二个代表原始数据。

2)输入文件
file1:
2
32
654
32
15
756
65223

file2:
5956
22
650
92

file3:
26
54
6
 
样例输出:
1    2
2    6
3    15
4    22
5    26
6    32
7    32
8    54
9    92
10    650
11    654
12    756
13    5956
14    65223



3)设计思考
这个实例仅仅要求对输入数据进行排序,熟悉MapReduce过程的读者会很快想到在MapReduce过程中就有排序,是否可以利用这个默认的排序,
而不需要自己再实现具体的排序呢?答案是肯定的。


但是在使用之前首先需要了解它的默认排序规则。它是按照key值进行排序的,如果key为封装int的IntWritable类型,那么MapReduce按照数字大小对key排序,
如果key为封装为String的Text类型,那么MapReduce按照字典顺序对字符串排序。


了解了这个细节,我们就知道应该使用封装int的IntWritable型数据结构了。也就是在map中将读入的数据转化成 IntWritable型,然后作为key值输出(value任意)。
reduce拿到<key,value-list>之后,将输入的 key作为value输出,并根据value-list中元素的个数决定输出的次数。
输出的key(即代码中的linenum)是一个全局变量,它统计当前key的位次。需要注意的是这个程序中没有配置Combiner,也就是在MapReduce过程中不使用Combiner。

这主要是因为使用map和reduce就已经能够完成任务了。


2、MapReduce实现

Map代码

  1. import java.io.IOException;
  2. import org.apache.hadoop.io.IntWritable;
  3. import org.apache.hadoop.io.LongWritable;
  4. import org.apache.hadoop.io.Text;
  5. import org.apache.hadoop.mapreduce.Mapper;
  6. public class SortMapper extends Mapper<LongWritable, Text, IntWritable, Text> {
  7. private Text val = new Text("");
  8. @Override
  9. protected void map(LongWritable key, Text value,Context context)
  10. throws IOException, InterruptedException {
  11. String line = value.toString();
  12. if(line.trim().length()>0){
  13. context.write(new IntWritable(Integer.valueOf(line.trim())), val);
  14. }
  15. }
  16. }

Reduce代码

  1. import java.io.IOException;
  2. import org.apache.hadoop.io.IntWritable;
  3. import org.apache.hadoop.io.Text;
  4. import org.apache.hadoop.mapreduce.Reducer;
  5. public class SortReducer extends Reducer<IntWritable, Text, IntWritable, IntWritable> {
  6. private IntWritable num = new IntWritable(1);
  7. @Override
  8. protected void reduce(IntWritable key, Iterable<Text> values,Context context)
  9. throws IOException, InterruptedException {
  10. for(Text val:values){
  11. context.write(num, key);
  12. num = new IntWritable(num.get()+1);
  13. }
  14. }
  15. }
程序入口
  1. import org.apache.hadoop.conf.Configuration;
  2. import org.apache.hadoop.fs.FileSystem;
  3. import org.apache.hadoop.fs.Path;
  4. import org.apache.hadoop.io.IntWritable;
  5. import org.apache.hadoop.io.Text;
  6. import org.apache.hadoop.mapreduce.Job;
  7. import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
  8. import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
  9. public class JobMain {
  10. /**
  11. * @param args
  12. */
  13. public static void main(String[] args)throws Exception {
  14. Configuration configuration = new Configuration();
  15. Job job = new Job(configuration,"sort-job");
  16. job.setJarByClass(JobMain.class);
  17. job.setMapperClass(SortMapper.class);
  18. job.setMapOutputKeyClass(IntWritable.class);
  19. job.setMapOutputValueClass(Text.class);
  20. job.setReducerClass(SortReducer.class);
  21. job.setOutputKeyClass(IntWritable.class);
  22. job.setOutputValueClass(IntWritable.class);
  23. FileInputFormat.addInputPath(job, new Path(args[0]));
  24. FileSystem fs = FileSystem.get(configuration);
  25. Path outputDir = new Path(args[1]);
  26. if(fs.exists(outputDir)){
  27. fs.delete(outputDir, true);
  28. }
  29. FileOutputFormat.setOutputPath(job, outputDir);
  30. System.exit(job.waitForCompletion(true)?0:1);
  31. }
  32. }

3、Spark实现-Scala版本

  1. val three = sc.textFile("/tmp/spark/three",3)
  2. var idx = 0
  3. import org.apache.spark.HashPartitioner
  4. val res = three.filter(_.trim().length>0).map(num=>(num.trim.toInt,"")).partitionBy(new HashPartitioner(1)).sortByKey().map(t => {
  5. idx += 1
  6. (idx,t._1)
  7. }).collect.foreach(x => println(x._1 +"\t" + x._2) )


由入输入文件有多个,产生不同的分区,为了生产序号,使用HashPartitioner将中间的RDD归约到一起。

最后结果是一样的




声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/685977
推荐阅读
相关标签
  

闽ICP备14008679号