linux--基于windows开发hadoop应用程序

所需jar包 链接:https://pan.baidu.com/s/1dV0cocLamZlm5NC89ZjEmQ

提取码:dasa

基于windows开发hadoop应用程序

1. 搭建hdfs环境

1.1 解压hadoop.tar.gz到一个目录下
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

1.2 配置环境变量
在这里插入图片描述
在这里插入图片描述
1.3 path里面
在这里插入图片描述
1.4 打开eclipse的plugins目录
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

1.5 导入后重新启动eclipse

按下图操作
在这里插入图片描述
切换到map/reduce,点击小象

在这里插入图片描述
vi mapred-site.xml
在这里插入图片描述
vi core-site.xml
在这里插入图片描述
配置完如果还报错不用管,忽略即可
类似于这样的错误
在这里插入图片描述

1.6 输入网址(http://192.168.50.146:50070/explorer.html#/)查看已经显示文件
在这里插入图片描述
配置完成查看eclipse里面的树已经显示(第一次不显示,需要新建项目后显示,所以不显示也不要着急)
这是显示的树
在这里插入图片描述

2.基于windows开发hadoop应用程序

在这里插入图片描述
在这里插入图片描述
2.1 添加外部扩展jar包,在自己的linux下(这3个jar包)
在这里插入图片描述
可以先复制到自己的机器上在添加
在这里插入图片描述
同理添加以下jar包
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
导入成功
在这里插入图片描述
2.2 右键项目新建class
在这里插入图片描述
类里面的内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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 MyWordCount {

public static class TokenizerMapper
extends Mapper<Object, Text, Text, IntWritable>{

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<Text,IntWritable,Text,IntWritable> {
private IntWritable result = new IntWritable();

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();
String[] otherArgs = new GenericOptionsParser(conf, args).getRemainingArgs();
if (otherArgs.length < 2) {
System.err.println("Usage: wordcount <in> [<in>...] <out>");
System.exit(2);
}
Job job = Job.getInstance(conf, "word count");
job.setJarByClass(MyWordCount.class);
job.setMapperClass(TokenizerMapper.class);
job.setCombinerClass(IntSumReducer.class);
job.setReducerClass(IntSumReducer.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(IntWritable.class);
for (int i = 0; i < otherArgs.length - 1; ++i) {
FileInputFormat.addInputPath(job, new Path(otherArgs[i]));
}
FileOutputFormat.setOutputPath(job,
new Path(otherArgs[otherArgs.length - 1]));
System.exit(job.waitForCompletion(true) ? 0 : 1);
}
}

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

将导出的jar包放到hadoop目录用户下
(在/home/gaoyu(建立的什么就是什么,可能是hadoop)下新建wordcount文件夹,然后将jar包放进去)
在这里插入图片描述
拖进去
在这里插入图片描述
登录hadoop集群的主机,进入刚才的gaoyu目录下,创建两个txt文件,创建txt文件的时候一定要先回车,在按ctrl+c才能保存

在这里插入图片描述
在这里插入图片描述
将这两个文件移动到wordcount目录下
在这里插入图片描述
并且修改所有属主和属组为gaoyu(有的是hadoop)
在这里插入图片描述

切换回gaoyu(hadoop)目录,创建input目录,如果存在则不用创建
在这里插入图片描述
切回root su root

上传新建的两个文件swpt1和2到input文件下,并查看
在这里插入图片描述
删除output目录,以及input目录下其他文件
hdfs dfs -rmr /output
在这里插入图片描述
hdfs dfs -rm /input/LICENSE.txt
在这里插入图片描述
删除成功

3.运行MyWordCount

在这里插入图片描述
查看网页结果
在这里插入图片描述

-------------本文结束感谢您的阅读-------------