登录
首页 » Unix_Linux » Source

Source

于 2020-07-04 发布 文件大小:95KB
0 231
下载积分: 1 下载次数: 105

代码说明:

  一个自己写的Hadoop MapReduce实例源码,网上看到不少网友在学习MapReduce编程,但是除了wordcount范例外实例比较少,故上传自己的一个。包含完整实例源码,编译配置文件,测试数据,可执行jar文件,执行脚本及操作步骤。学习完此例子后,你能掌握MapReduce基础编程,及如何编译Java文件,打包jar文件,编写shell执行脚本等。后续学习还可以参看本人的CSDN博客,如有问题也可以在线为你解答,不过本人也学习Hadoop不足一年,现学现卖而已,也可能力不能及,有些难的也很有可能不懂。希望能够帮助到学习MapReduce的朋友(A written Hadoop MapReduce example source code line to see a lot of friends in the learning MapReduce programming, but in addition to the wordcount example instance is relatively small, so upload your own. Contains the full example source code, the compiler configuration files, test data, executable jar file, execute the script and steps. Learn this example, you can grasp the the MapReduce basis of programming, and how to compile Java files, packaged jar file, write shell execute the script. Follow-up study can also see my CSDN blog if the problem is also available online for you to answer, but I also learned that for Hadoop less than a year, buying and learning it can also power can not and some difficulty also likely to understand . Want to be able to help to learn MapReduce friend)

文件列表:

Source
......\Hour_Out_Combiner
......\.................\averagepowercompile.sh,283,2012-03-07
......\.................\averagepower_hour_outcombiner.jar,27089,2012-07-23
......\.................\htm" target=_blank>HadoopRunAveragePower,2337,2012-07-24
......\.................\input
......\.................\.....\HotColdMon_120618000000.txt,2361252,2012-06-18
......\.................\workspace
......\.................\.........\averagePower
......\.................\.........\............\AveragePower.java,12804,2012-07-18
......\.................\.........\............\workdir
......\.................\.........\............\.......\AveragePower$MyCombiner.class,3006,2012-07-18
......\.................\.........\............\.......\AveragePower$MyMap.class,7268,2012-07-18
......\.................\.........\............\.......\AveragePower$MyReduce.class,2749,2012-07-18
......\.................\.........\............\.......\AveragePower.class,3377,2012-07-18
......\.................\.........\............\.......\Calculate.class,138,2012-07-18
......\.................\.........\............\.......\Calculate.java,124,2012-01-19
......\.................\.........\............\.......\Cycle.class,192,2012-07-18
......\.................\.........\............\.......\Cycle.java,1166,2012-01-19
......\.................\.........\............\.......\EEV.class,2101,2012-07-18
......\.................\.........\............\.......\EEV.java,1384,2012-01-19
......\.................\.........\............\.......\Fan.class,986,2012-07-18
......\.................\.........\............\.......\Fan.java,520,2012-01-19
......\.................\.........\............\.......\Heater.class,992,2012-07-18
......\.................\.........\............\.......\Heater.java,538,2012-01-19
......\.................\.........\............\.......\MC.class,1640,2012-07-18
......\.................\.........\............\.......\MC.java,856,2012-01-19
......\.................\.........\............\.......\PC.class,3249,2012-07-18
......\.................\.........\............\.......\PC.java,2887,2012-01-19
......\.................\.........\............\.......\Power.class,3272,2012-07-18
......\.................\.........\............\.......\Power.java,2886,2012-06-25
......\.................\.........\............\.......\Value.class,4391,2012-07-18
......\.................\.........\............\.......\Value.java,5900,2012-07-18
......\.................\.........\............\.......\Valve.class,990,2012-07-18
......\.................\.........\............\.......\Valve.java,532,2012-02-10
......\幚峴曽朄.txt,172,2012-07-24
......\憖嶌採帵.doc,29184,2012-08-01

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • stm32_f4_ptpd-master
    PTPd2 for STM32F4 implementacion
    2016-05-10 19:40:50下载
    积分:1
  • phFriNfc_FelicaMap
    brief This component encapsulates read/write/check ndef/process functionalities, for the Felica Smart Card.
    2013-05-28 14:08:07下载
    积分:1
  • boardergo
    Linux driver for HYSDN cards, specific routines for ergo type boards.
    2013-03-08 21:18:32下载
    积分:1
  • STRCPY
    STRCPY的实现与应用 希望对大家由帮助(STRCPY THE SHIXIAN)
    2013-12-09 14:53:19下载
    积分:1
  • paper_2
    Design of Low Complexity OFDM Schemes and Position Location Algorithm for ... By Syed Faisal Ali Shah PrecodING OFDM System THESIS Go
    2017-02-13 03:25:24下载
    积分:1
  • apriori
    apriori.java //---- apriori.java //---- input file need: //---- 1. config.txt //---- four lines, each line a integer //---- item number, transaction number , minsup //---- 2. transa.txt
    2010-01-12 20:42:14下载
    积分:1
  • swingmap
    说明:  将指定经纬度的点在地图上显示出来,提供地图图片放大缩小和拖动功能。(The designated latitude and longitude points will be displayed on the map, providing map image zooming and zooming and dragging functions.)
    2020-06-16 06:20:01下载
    积分:1
  • 小游戏源码
    说明:  飞机大战 首先对这个游戏分析,在屏幕上的物体都是飞行物,我们可以把建一个类,让其他飞行物继承这个类.游戏中应有英雄机(也就是自己控制的飞机)、敌人。而敌人应该分为打死给分的飞机(就是普通飞机),另一种就是打死有奖励的敌人。他们都应该是飞行物的子类,我们也可以为普通飞机和给奖励的敌人设一个接口让他们去实现接口,这样有利于以后的扩展,我在这里给的简化版的飞机大战,主要是为了让大家了解面向对象。(First of all, analyze the game. The objects on the screen are flying objects. We can build a class and let other flying objects inherit this class. There should be hero planes (i.e., planes controlled by ourselves) and enemies in the game. And the enemy should be divided into killing the aircraft (that is, ordinary aircraft), the other is to kill the enemy with reward. They should be subclasses of flying objects. We can also set an interface for ordinary aircraft and reward enemies to implement the interface, which is conducive to future expansion. The simplified version of aircraft War I gave here is mainly to let you understand object-oriented.)
    2020-10-02 09:59:10下载
    积分:1
  • TicTacAction
    Multiplayer Action for TicTactoe game
    2011-10-07 17:48:20下载
    积分:1
  • src.tar
    通信框架,一个类似apache mina的异步通信框架(TNF like apache mina)
    2013-11-13 09:57:45下载
    积分:1
  • 696518资源总数
  • 105885会员总数
  • 31今日下载