首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
data程序代做、代写Java设计编程
项目预算:
开发周期:
发布时间:
要求地区:
Lab 05 - Wordcount program in Hadoop
Full name:
Student D:
Tasks:
1. Open Eclipse inside the Cloudera platform
Note: If Eclipse software is not installed inside you Cloudera VM, please install it.
2. Create a Java project and a java file:
a. File > New > Java Project
b. Give a project name ex; “WordCount”
c. Hit “Next” and in the next page, click on “Libraries” tab
d. Click on “Add External JARs” button
e. Navigate to “File System>usr>lib>Hadoop”
f. Select all *.jar files and click “OK”
g. Click on “Add External JARs” button again
h. Navigate to “File System>usr>lib>Hadoop>client”
i. Select all *.jar files (ctrl+A) and click “OK”
j. Give a moment to load all the jar files. Once the jar files are added to the list
of libraries, then click “Finish” button
k. Inside the “Package Explorer”, and under the project that you created above
(WordCound), right click on src and from “New”, select option “Class”
2
l. In the Java Class window, just give a meaningful name for the file name (ex;
WordCount) and the click on “Finish” button. This will create a java file with
the give name (ex; WordCount.java)
m. Delete the content of the newly created file and then copy the source code
from the like bellow or from the resources at the bottom and paste the code
inside the file.
i. Copy the source code from the below link
https://hadoop.apache.org/docs/current/hadoop-mapreduceclient/hadoop-mapreduce-clientcore/MapReduceTutorial.html#Source_Code
n. Check the code and ensure there is no error before you save it.
o. Now right click on the project name “WordCount” inside “Package Explorer”
panel and select “Export”.
p. Open Java from the list and select “JAR File”, the click “Next”
q. In the next window, click on “Browse…” button and navigate to a specific
folder ex; /home/cloudera
r. Give a name file for exporting jar file (ex; WordCount.jar) and click “OK”
s. Click “Finish” button
t. Check the jar file is available inside the “cloudera” folder
3. Open terminal
4. Create a simple text file ( to do that, follow the any methods you learn in previous
labs)
a. Use the command: cat > /home/cloudera/Processfile.txt
b. Add some lines and try to use duplicated words inside
3
c. To save and close the file opened by cat function: ctrl+d or ctrl+z
d. Check the file is created and check the content to ensure the inserted content
is saved. cat /home/cloudera/Processfile.txt
5. Check hdfs files and directory list: hdfs dfs -ls /
6. Create a folder inside the root of hdfs: hdfs dfs -mkdir /inputfoler
7. Check the folder is created
8. Copy Processfile.txt from local storage into inputfoler inside hdfs
a. Command: hdfs dfs -put /home/cloudera/Processfile.txt /inputfolder/
b. Check the content of file: hdfs dfs -cat /inputfolder/Processfile.txt
9. Run the Hadoop syntax to run the wordcount
a. Command: Hadoop jar /home/cloudera/WordCount.jar WordCount
/inputfolder/Processfile.txt /outputfolder
b. Hit enter and wait for the jar file to be executed
10. Read the content of the messages that are shown by Hadoop during the execution
process and try to understand and write your findings in your report
11. After the execuation of the program is finished, check the folder outputfolder inside
hdfs to see if there is any output file: hdfs dfs -ls /outputfolder
12. Open the file with name similar to “part-r-00000” or any file that is created and the
size is greater than Zero
13. Check the word counts and cross check with the content of the Processfile.txt to
validate counting is correct.
4
14. Run the same wordcount program with another text file. select a text file of your choice.
But it is recommended to do not use a heavy file for this practice to prevent heavy
process inside your VM that takes longer time to be completed.
15. Check the source code used in task 2.m and write your understanding of the code in
your report.
16. Save and submit your Lab documents in PDF with the following filename format.
Submit your report via the submission link for this available on MyTIMeS.
Filename format: Name_ID_Lab05
Resources:
Source code for WordCount from hadoop.apache.org website
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
{
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();
Job job = Job.getInstance(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(args[0]));
FileOutputFormat.setOutputPath(job, new Path(args[1]));
System.exit(job.waitForCompletion(true) ? 0 : 1);
}
}
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!