数据准备
创建一个log文件
1
2
3
4
5
6vim test.log
welcome bigdata test hello
bigdata test hello
hello welcome
tab键分隔上传数据到hdfs
1
2
3
4
5
6
7
8
9
10# 创建测试数据文件夹
hadoop fs -mkdir /testData
# 将我们创建的log文件上传到hdfs上
hadoop fs -put test.log /testData/
# 检查一下上传成功了没
hadoop fs -text /testData/test.log
19/03/04 21:09:59 WARN util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
welcome bigdata test hello
bigdata test hello
hello welcome