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

MR的計算是可以嵌套使用的甲葬,比如在現實業(yè)務中有時候我們可能要求先求出總結果,在對總結果進行排序滑进,當排序的值是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包執(zhí)行: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包執(zhí)行 hadoop jar /root/Desktop/mr_JAR/sumAndSort1.jar

注意:MR自身會使用快速排序將key排序董瞻,key必須可序列化

input.png
output.png
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市田巴,隨后出現的幾起案子钠糊,更是在濱河造成了極大的恐慌挟秤,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,602評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件抄伍,死亡現場離奇詭異艘刚,居然都是意外死亡,警方通過查閱死者的電腦和手機截珍,發(fā)現死者居然都...
    沈念sama閱讀 88,442評論 2 382
  • 文/潘曉璐 我一進店門昔脯,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人笛臣,你說我怎么就攤上這事∷肀” “怎么了沈堡?”我有些...
    開封第一講書人閱讀 152,878評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長燕雁。 經常有香客問我诞丽,道長,這世上最難降的妖魔是什么拐格? 我笑而不...
    開封第一講書人閱讀 55,306評論 1 279
  • 正文 為了忘掉前任僧免,我火速辦了婚禮,結果婚禮上捏浊,老公的妹妹穿的比我還像新娘懂衩。我一直安慰自己,他們只是感情好金踪,可當我...
    茶點故事閱讀 64,330評論 5 373
  • 文/花漫 我一把揭開白布浊洞。 她就那樣靜靜地躺著,像睡著了一般胡岔。 火紅的嫁衣襯著肌膚如雪法希。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,071評論 1 285
  • 那天靶瘸,我揣著相機與錄音苫亦,去河邊找鬼。 笑死怨咪,一個胖子當著我的面吹牛屋剑,可吹牛的內容都是我干的。 我是一名探鬼主播惊暴,決...
    沈念sama閱讀 38,382評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼饼丘,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了辽话?” 一聲冷哼從身側響起肄鸽,我...
    開封第一講書人閱讀 37,006評論 0 259
  • 序言:老撾萬榮一對情侶失蹤卫病,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后典徘,有當地人在樹林里發(fā)現了一具尸體蟀苛,經...
    沈念sama閱讀 43,512評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,965評論 2 325
  • 正文 我和宋清朗相戀三年逮诲,在試婚紗的時候發(fā)現自己被綠了帜平。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,094評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡梅鹦,死狀恐怖裆甩,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情齐唆,我是刑警寧澤嗤栓,帶...
    沈念sama閱讀 33,732評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站箍邮,受9級特大地震影響茉帅,放射性物質發(fā)生泄漏。R本人自食惡果不足惜锭弊,卻給世界環(huán)境...
    茶點故事閱讀 39,283評論 3 307
  • 文/蒙蒙 一鬓椭、第九天 我趴在偏房一處隱蔽的房頂上張望胧辽。 院中可真熱鬧本鸣,春花似錦疙挺、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,286評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至攒暇,卻和暖如春土匀,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背形用。 一陣腳步聲響...
    開封第一講書人閱讀 31,512評論 1 262
  • 我被黑心中介騙來泰國打工就轧, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留田度,地道東北人妒御。 一個月前我還...
    沈念sama閱讀 45,536評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像镇饺,于是被迫代替她去往敵國和親乎莉。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,828評論 2 345

推薦閱讀更多精彩內容