0


hadoop shell 练习题

hadoop shell 练习题:

利用Hadoop提供的Shell命令完成以下任务(路径中的xxx替换为自己的用户名):

1、显示HDFS中指定的文件的读写权限、大小、创建时间、路径等信息;
示例:
hdfs dfs -ls /
2、从HDFS中下载指定文件;
示例:
hdfs dfs -get /tmp/train/wordcount/in/input.txt ./myinput.txt
3、在HDFS中指定位置创建文件夹;
示例:
hdfs dfs -mkdir -p /tmp/train/xxx/wordcount/in
4、将刚才下载的myinput.txt文件中增加自己的用户名后,上传到HDFS中刚才创建的目录;xxx替换为自己的用户名;
示例:
hdfs dfs -put ./myinput.txt /tmp/train/xxx/wordcount/in
5、在HDFS中,将文件复制为myinput.txt.bak。
示例:
hdfs dfs -cp /tmp/train/xxx/wordcount/in/myinput.txt /tmp/train/xxx/wordcount/in/myinput.txt.bak
6、在HDFS中,删除myinput.txt.bak文件;
示例:
hdfs dfs -rm /tmp/train/xxx/wordcount/in/myinput.txt.bak

Hadoop shell帮助文档
https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-common/FileSystemShell.html

标签: hadoop 大数据 hdfs

本文转载自: https://blog.csdn.net/shy_snow/article/details/129301373
版权归原作者 shy_snow 所有, 如有侵权,请联系我们删除。

“hadoop shell 练习题”的评论:

还没有评论