hadoop2.X嵌套计算(sumAndStor+序列化)

MR的计算是可以嵌套使用的,比如在现实业务中有时候我们可能要求先求出总结果,在对总结果进行排序,当排序的值是number类型,当直接排序。当需要排序的是javaBean,则首先要对其进行序列化。

【1】hadoop中的序列化
Hadoop的的序列化不采用的Java的序列化,而是实现了自己的序列化机制。
Hadoop的通过Writable接口实现的序列化机制,不过没有提供比较功能,所以和Java的的中Comparable接口合并,提供一个接口WritableComparable。

1 > Writable 的使用(当不需要进行排序而只是对数据的持久化等使用)

要实现序列化的bean要实现Writable 接口并复写他的两个方法(序列化、反序列化)
public class DataBean implements Writable{

    private String tel;
    private long upPayLoad; 
    private long downPayLoad;   
    private long totalPayLoad;
    public DataBean(){}
    
        //一般为了方便使用,都会给一个全参的构造方法
    public DataBean(String tel, long upPayLoad, long downPayLoad) {
        super();
        this.tel = tel;
        this.upPayLoad = upPayLoad;
        this.downPayLoad = downPayLoad;
        this.totalPayLoad = upPayLoad + downPayLoad;
    }

    @Override
    public String toString() {
        return this.upPayLoad + "\t" + this.downPayLoad + "\t" + this.totalPayLoad;
    }

    //反序列化
    public void write(DataOutput out) throws IOException {
        out.writeUTF(tel);
        out.writeLong(upPayLoad);
        out.writeLong(downPayLoad);
        out.writeLong(totalPayLoad);
    }

    //序列化
    public void readFields(DataInput in) throws IOException {
        this.tel = in.readUTF();
        this.upPayLoad = in.readLong();
        this.downPayLoad = in.readLong();
        this.totalPayLoad = in.readLong();      
    }

    //getter 和 setter方法
}

2 > WritableComparable的使用(当即需要持久化也需要排序)

当即需要对bean进行持久化又要实现某种排序,则要实现WritableComparable接口并复写三个方法(序列化、反序列化、比较)
public class InfoBean implements WritableComparable<InfoBean> {

    private String account;//key邮箱
    private double income;//收入
    private double expenses;//支出
    private double surplus;//结余
    
    //set方法(含参数构造方法)
    public void set(String account,double income,double expenses){
        this.account = account;
        this.income = income;
        this.expenses = expenses;
        this.surplus = income - expenses;
    }
    //反序列化
    public void write(DataOutput out) throws IOException {
        out.writeUTF(account);
        out.writeDouble(income);
        out.writeDouble(expenses);
        out.writeDouble(surplus);
        
    }
    //序列化
    public void readFields(DataInput in) throws IOException {
        this.account = in.readUTF();
        this.income = in.readDouble();
        this.expenses = in.readDouble();
        this.surplus = in.readDouble();
    }
    //排序方法
    public int compareTo(InfoBean o) {
        //先比较收入,当输入相等
        if(this.income == o.getIncome()){
            //比支出
            return this.expenses > o.getExpenses() ? 1 : -1;
        }
        return this.income > o.getIncome() ? 1 : -1;
    }

    @Override
    public String toString() {
        return  income + "\t" + expenses + "\t" + surplus;
    }
    
//getter  和 setter方法
    
}

【案例】计算出用户的总输入和总支出,并排序(如果总输入相等在按总支出排序)

【1】源数据

zhangsan@163.com    6000    0   2014-02-20
lisi@163.com    2000    0   2014-02-20
lisi@163.com    0   100 2014-02-20
zhangsan@163.com    3000    0   2014-02-20
wangwu@126.com  9000    0   2014-02-20
wangwu@126.com  0   200     2014-02-20

【2】结果数据

lisi@163.com    2000.0  100.0   1900.0
zhangsan@163.com    9000.0  0.0 9000.0
wangwu@126.com  9000.0  200.0   8800.0

【3】实现原理:即实现一个sum的MR对数据进行sum计算,在将sum的输出结果当做源数据编写sort计算,sort的计算结果就是最终结果数据

2016-12-13_103123.png

【4】代码实现:

文件一:InfoBean.java

public class InfoBean implements WritableComparable<InfoBean> {

    private String account;//key邮箱
    private double income;//收入
    private double expenses;//支出
    private double surplus;//结余
    
    //set方法(含参数构造方法)
    public void set(String account,double income,double expenses){
        this.account = account;
        this.income = income;
        this.expenses = expenses;
        this.surplus = income - expenses;
    }
    //反序列化
    public void write(DataOutput out) throws IOException {
        out.writeUTF(account);
        out.writeDouble(income);
        out.writeDouble(expenses);
        out.writeDouble(surplus);
        
    }
    //序列化
    public void readFields(DataInput in) throws IOException {
        this.account = in.readUTF();
        this.income = in.readDouble();
        this.expenses = in.readDouble();
        this.surplus = in.readDouble();
    }

    @Override
    public int compareTo(InfoBean o) {
        //先比较收入,当输入相等
        if(this.income == o.getIncome()){
            //比支出
            return this.expenses > o.getExpenses() ? 1 : -1;
        }
        return this.income > o.getIncome() ? 1 : -1;
    }
    @Override
    public String toString() {
        return  income + "\t" + expenses + "\t" + surplus;
    }

    //getter setter方法
}


文件二:求和SumStep.java

public class SumStep {

    public static class SumMapper extends Mapper<LongWritable, Text, Text, InfoBean> {
        private Text k = new Text();
        private InfoBean v = new InfoBean();
        
        protected void map(LongWritable key, Text value, Context context) 
                throws java.io.IOException ,InterruptedException {
            String line = value.toString();
            String[] fields = line.split("\t");
            
            String account = fields[0];
            double in = Double.parseDouble(fields[1]);
            double out = Double.parseDouble(fields[2]);
            k.set(account);
            v.set(account, in, out);
            context.write(k, v);
            //context.write(new Text(), new InfoBean());//这里为了避免多次new对象占用资源改为上方提前new好
        };
    }
    
    public static class SumReduce extends Reducer<Text, InfoBean, Text, InfoBean> { 
        private InfoBean v = new InfoBean();
        
        protected void reduce(Text key, Iterable<InfoBean> values, Context context) 
                throws java.io.IOException ,InterruptedException {
            double in_sum = 0 ;
            double out_sum = 0 ;
            for(InfoBean bean : values){
                in_sum += bean.getIncome();
                out_sum += bean.getExpenses();
            }
            v.set("", in_sum, out_sum);
            context.write(key, v);
        };
    }
    
    public static void main(String[] args) throws Exception {
        Configuration conf = new Configuration();
        Job job = Job.getInstance(conf);
        
        job.setJarByClass(SumStep.class);
        
        job.setMapperClass(SumMapper.class);
        job.setMapOutputKeyClass(Text.class);
        job.setMapOutputValueClass(InfoBean.class);
        FileInputFormat.setInputPaths(job, new Path("/mrDemo/input/sum_sort"));
        
        job.setReducerClass(SumReduce.class);
        job.setOutputKeyClass(Text.class);
        job.setOutputValueClass(InfoBean.class);
        FileOutputFormat.setOutputPath(job, new Path("/mrDemo/output/sum_sort"));
        
        job.waitForCompletion(true);    
    }
}

//打jar包执行:hadoop jar /root/Desktop/mr_JAR/sumAndSort.jar

文件三:排序 SortStep.java

public class SortStep {
    public static class SortMapper extends Mapper<LongWritable, Text, InfoBean, NullWritable> {
        
        private InfoBean k = new InfoBean();
        
        protected void map(LongWritable key, Text value, Context context) 
                throws java.io.IOException ,InterruptedException {
            String line = value.toString();
            String[] fields = line.split("\t");
            
            String account = fields[0];
            double in = Double.parseDouble(fields[1]);
            double out = Double.parseDouble(fields[2]);
            k.set(account, in, out);
            context.write(k, NullWritable.get());
        };
    }
    
    public static class SortReduce extends Reducer<InfoBean, NullWritable, Text, InfoBean> {
        
        private Text k = new Text();
        protected void reduce(InfoBean bean, Iterable<NullWritable> values, Context context) 
                throws java.io.IOException ,InterruptedException {
            String account = bean.getAccount();
            k.set(account);
            context.write(k, bean);
        };
    }
    
    public static void main(String[] args) throws Exception {
        
        Configuration conf = new Configuration();
        Job job = Job.getInstance(conf);
        
        job.setJarByClass(SortStep.class);
        
        job.setMapperClass(SortMapper.class);
        job.setMapOutputKeyClass(InfoBean.class);
        job.setMapOutputValueClass(NullWritable.class);
        FileInputFormat.setInputPaths(job, new Path("/mrDemo/output/sum_sort/part-r-00000"));
        
        job.setReducerClass(SortReduce.class);
        job.setOutputKeyClass(Text.class);
        job.setOutputValueClass(InfoBean.class);
        FileOutputFormat.setOutputPath(job, new Path("/mrDemo/output/sumAndSort"));
        
        job.waitForCompletion(true);
    }
}

//打jar包执行 hadoop jar /root/Desktop/mr_JAR/sumAndSort1.jar

注意:MR自身会使用快速排序将key排序,key必须可序列化

input.png
output.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容