欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

Hadoop如何打包和運(yùn)行MapReduce程序

本篇內(nèi)容主要講解“Hadoop如何打包和運(yùn)行MapReduce程序”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Hadoop如何打包和運(yùn)行MapReduce程序”吧!

創(chuàng)新互聯(lián)主要從事網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站制作、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)安平,10年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18980820575

主要內(nèi)容:將 MapReduce 代碼通過命令行打包成 jar 包,然后提交給 Hadoop 集群運(yùn)行。示例的 WordCount.java、WordCount.txt 見最后面。

一、編譯 Hadoop 的應(yīng)用程序需要將所需的依賴包添加到 CLASSPATH,可以添加到 .bashrc 或者 /etc/profile。

# javac 編譯相關(guān)包依賴
HADOOP_CLASSPATH=$($HADOOP_HOME/bin/hadoop classpath)
# 將 HADOOP_CLASSPATH 添加到 CLASSPATH
export CLASSPATH=.:$HADOOP_CLASSPATH:$CLASSPATH

二、編譯源代碼

# 編譯 沒有設(shè)置 CLASSPATH 通過 -cp $($HADOOP_HOME/bin/hadoop classpath)
javac WordCount.java
# 打包
jar -cvf WordCount.jar  *.class

三、提交到 Hadoop

# 上傳 WordCount.txt 到 Hadoop
hdfs dfs -mkdir input
hdfs dfs -put WordCount.txt input
# 提交任務(wù) jar 包、main 所在的類、輸入文件夾、輸出文件夾
hadoop jar WordCount.jar WordCount input output
# 查看運(yùn)行結(jié)果
hdfs dfs -cat output/*
# 刪除輸出結(jié)果目錄
hdfs dfs -rm -r output

四、運(yùn)行結(jié)果

and	1
bigdata	2
hadoop	2
hello	4
world	1

附錄:

WordCount.txt,單詞使用空格分隔

hello world
hello hadoop
hello bigdata
hello hadoop  and bigdata

WordCount.java

import java.io.IOException;
import java.util.StringTokenizer;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
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;

public class WordCount {

    public static class TokenizerMapper extends Mapper<Object, Text, Text, IntWritable> {
        private final static IntWritable ONE = new IntWritable(1);
        private final Text word = new Text();

        @Override
        public void map(Object key, Text value, Context context) throws IOException, InterruptedException {
            StringTokenizer itr = new StringTokenizer(value.toString());
            while (itr.hasMoreTokens()) {
                word.set(itr.nextToken());
                context.write(word, ONE);
            }
        }
    }

    public static class IntSumReducer extends Reducer<Text, IntWritable, Text, IntWritable> {
        private final IntWritable result = new IntWritable();

        @Override
        public void reduce(Text key, Iterable<IntWritable> values, Context context)
                throws IOException, InterruptedException {
            int sum = 0;
            for (IntWritable val : values) {
                sum += val.get();
            }
            result.set(sum);
            context.write(key, result);
        }
    }

    public static void main(String[] args) throws Exception {
        Configuration conf = new Configuration();
        Job job = Job.getInstance(conf, "WordCount");
        job.setJarByClass(WordCount.class);
        job.setMapperClass(TokenizerMapper.class);
        job.setCombinerClass(IntSumReducer.class);
        job.setReducerClass(IntSumReducer.class);
        job.setOutputKeyClass(Text.class);
        job.setOutputValueClass(IntWritable.class);
        FileInputFormat.addInputPath(job, new Path(args[0]));
        FileOutputFormat.setOutputPath(job, new Path(args[1]));
        System.exit(job.waitForCompletion(true) ? 0 : 1);
    }
}

到此,相信大家對“Hadoop如何打包和運(yùn)行MapReduce程序”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

文章題目:Hadoop如何打包和運(yùn)行MapReduce程序
分享URL:http://aaarwkj.com/article30/peiipo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司、網(wǎng)站排名小程序開發(fā)、定制開發(fā)、商城網(wǎng)站網(wǎng)站設(shè)計(jì)公司

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

手機(jī)網(wǎng)站建設(shè)
国产精品三级国产精品高| 中文字幕在线日韩av| 亚洲精品国产av成人| 色婷婷中文字幕久久久| 国产精品日韩经典中文字幕| 尹人大香蕉在线视频| 日韩免费av在线观看| 国产精品一区在线免费看| 91麻豆成人精品国产| 亚洲激情粉嫩中文字幕| 午夜91激情福利视频| 欧美精品一区二区三区在线| 精品人妻一区二区av| 丰满人妻在线一区二区三区| av熟女一区二区三区| 依依成人影院在线观看av| 一区二区不卡日韩av| 欧美日韩另类综合一区| 国产精品深夜在线观看| 九九九热免费在线观看| 日韩高清精品一区二区| 亚洲国产精品一区二区三区| 亚洲精品一品区二品区三区| 国产成人午夜视频免费一区| 中文字幕不卡在线观看不卡| 老司机精品成人免费视频| 日本韩国欧美一区二区在线| 麻豆黄片在线免费观看| 国产av综合一区二区三区最新| 伊人激情一区二区三区| 丝袜美腿蜜汁一龙二凤| 国产在线视频不卡一区| 久久亚洲中文字幕乱码| 美女高潮久久久777| 久亚洲精品色婷婷国产熟女| 亚洲欧美日韩国产在线一区| 亚洲小说欧美激情另类| 最新日韩欧美不卡一二三区| 人妻中文字幕一区二区三| 国产一区免费二区三区四区 | 亚洲国产av国产av|