中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

eclipse怎么搭建hadoop環境

發布時間:2021-08-16 22:44:10 來源:億速云 閱讀:569 作者:chen 欄目:網絡管理

這篇文章主要講解了“eclipse怎么搭建hadoop環境”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“eclipse怎么搭建hadoop環境”吧!

一、安裝Eclipse

    下載Eclipse,解壓安裝,例如安裝到/usr/local,即/usr/local/eclipse

    4.3.1版本下載地址:http://pan.baidu.com/s/1eQkpRgu

二、在eclipse上安裝hadoop插件

    1、下載hadoop插件

        下載地址:http://pan.baidu.com/s/1mgiHFok

     此zip文件包含了源碼,我們使用使用編譯好的jar即可,解壓后,release文件夾中的hadoop.eclipse-kepler-plugin-2.2.0.jar就是編譯好的插件。

   2、把插件放到eclipse/plugins目錄下

    3、重啟eclipse,配置Hadoop installation directory    

     如果插件安裝成功,打開Windows—Preferences后,在窗口左側會有Hadoop Map/Reduce選項,點擊此選項,在窗口右側設置Hadoop安裝路徑。

eclipse怎么搭建hadoop環境






4、配置Map/Reduce Locations

     打開Windows—Open Perspective—Other

eclipse怎么搭建hadoop環境




 選擇Map/Reduce,點擊OK

    在右下方看到如下圖所示

eclipse怎么搭建hadoop環境    

點擊Map/Reduce Location選項卡,點擊右邊小象圖標,打開Hadoop Location配置窗口:

    輸入Location Name,任意名稱即可.配置Map/Reduce Master和DFS Mastrer,Host和Port配置成與core-site.xml的設置一致即可。

eclipse怎么搭建hadoop環境

eclipse怎么搭建hadoop環境    




點擊"Finish"按鈕,關閉窗口。

 點擊左側的DFSLocations—>myhadoop(上一步配置的location name),如能看到user,表示安裝成功

   eclipse怎么搭建hadoop環境

    如果如下圖所示表示安裝失敗,請檢查Hadoop是否啟動,以及eclipse配置是否正確。

eclipse怎么搭建hadoop環境


三、新建WordCount項目

    File—>Project,選擇Map/Reduce Project,輸入項目名稱WordCount等。

    在WordCount項目里新建class,名稱為WordCount,代碼如下:

eclipse怎么搭建hadoop環境

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; import org.apache.hadoop.util.GenericOptionsParser; public class WordCount { public static class TokenizerMapper extends Mapper{ 

  private final static IntWritable one = new IntWritable(1);

  private Text word = new Text();

 

  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 {

  private IntWritable result = new IntWritable(); 

  public void reduce(Text key, Iterable 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();

  String[] otherArgs = new GenericOptionsParser(conf, args).getRemainingArgs();

  if (otherArgs.length != 2) {

    System.err.println("Usage: wordcount  ");

    System.exit(2);

  }

  Job job = new Job(conf, "word count");

  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(otherArgs[0]));

  FileOutputFormat.setOutputPath(job, new Path(otherArgs[1]));

  System.exit(job.waitForCompletion(true) ? 0 : 1);

}

}

四、運行

    1、在HDFS上創建目錄input

        hadoop fs -mkdir input

    2、拷貝本地README.txt到HDFS的input里

         hadoop fs -copyFromLocal /usr/local/hadoop/README.txt input

    3、點擊WordCount.java,右鍵,點擊Run As—>Run Configurations,配置運行參數,即輸入和輸出文件夾

  hdfs://localhost:9000/user/hadoop/input hdfs://localhost:9000/user/hadoop/output

    eclipse怎么搭建hadoop環境

  點擊Run按鈕,運行程序。

    4、運行完成后,查看運行結果        

        方法1:

        hadoop fs -ls output

        可以看到有兩個輸出結果,_SUCCESS和part-r-00000

        執行hadoop fs -cat output/*

        

        方法2:

        展開DFS Locations,如下圖所示,雙擊打開part-r00000查看結果

eclipse怎么搭建hadoop環境

感謝各位的閱讀,以上就是“eclipse怎么搭建hadoop環境”的內容了,經過本文的學習后,相信大家對eclipse怎么搭建hadoop環境這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泗水县| 克拉玛依市| 巧家县| 石河子市| 武安市| 施甸县| 秭归县| 南木林县| 陈巴尔虎旗| 灵川县| 彭泽县| 朝阳县| 贵南县| 徐州市| 开远市| 汽车| 隆林| 乐陵市| 施甸县| 高阳县| 白山市| 祁阳县| 武山县| 牙克石市| 上思县| 北海市| 中江县| 琼结县| 荃湾区| 定日县| 牟定县| 田阳县| 福安市| 乌审旗| 阿拉善右旗| 宜阳县| 垣曲县| 绥阳县| 兴国县| 临泽县| 阜南县|