大数据学习笔记(三)-hadoop demo 运行【原创】
程序员文章站
2022-04-01 14:37:22
...
1. 创建两个文本文件,作为测试数据
mkdir -p /home/zhenggm/input
cd /home/zhenggm/input
echo "hello hadoop bye hadoop" > f1
echo "hello hadoop bye hadoop" > f2
2. 创建hdfs目录
hadoop fs -mkdir -p /tmp/input
3. 拷贝文件到hdfs中
hadoop fs -put /home/zhenggm/input/* /tmp/input/
4.运行demo程序
cd /usr/local/hadoop-2.7.3
hadoop jar ./share/hadoop/mapreduce/hadoop-mapreduce-examples-2.7.3.jar wordcount /tmp/input /tmp/output
5.查看结果目录
6.查看统计结果
mkdir -p /home/zhenggm/input
cd /home/zhenggm/input
echo "hello hadoop bye hadoop" > f1
echo "hello hadoop bye hadoop" > f2
2. 创建hdfs目录
hadoop fs -mkdir -p /tmp/input
3. 拷贝文件到hdfs中
hadoop fs -put /home/zhenggm/input/* /tmp/input/
4.运行demo程序
cd /usr/local/hadoop-2.7.3
hadoop jar ./share/hadoop/mapreduce/hadoop-mapreduce-examples-2.7.3.jar wordcount /tmp/input /tmp/output
5.查看结果目录
6.查看统计结果