本文介绍了使用du命令的HDFS文件系统的大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道"du -h"命令以人类可读的格式提供磁盘使用情况.但是,请让我知道在Hadoop集群的HDFS文件系统上使用"du -h"命令时显示的两个值是什么.
I know "du -h" command gives the disk usage in human readable format. But please let me know what are the two values showing up while using the "du -h" command on HDFS filesystem for my Hadoop Cluster.
[hduser@node2 ~]$ sudo -u hdfs hdfs dfs -du -h /
6.3 K 768.0 M /hbase
0 0 /tmp
371.6 M 743.2 M /user
Hbase内部目录的输出:
Output for directories inside Hbase:
[hduser@node1 ~]$ sudo -u hdfs hdfs dfs -du -h /hbase/WALs
0 0 /hbase/WALs/hregion-90735520
0 0 /hbase/WALs/node1.example.com,60020,1463323242824
166 512 M /hbase/WALs/node1.example.com,60020,1464088636041
0 0 /hbase/WALs/node2.example.com,60020,1463321374329
0 0 /hbase/WALs/node2.example.com,60020,1463998874513
0 0 /hbase/WALs/node2.example.com,60020,1464024047168
83 256 M /hbase/WALs/node2.example.com,60020,1464100746376
[hduser@node1 ~]$
推荐答案
给定命令
[hduser@node2 ~]$ sudo -u hdfs hdfs dfs -du -h /
du返回了三列,分别是:
+----------+--------------------------------------+----------------+
| size |disk_space_consumed_with_all_replicas | full_path_name |
+----------+--------------------------------------+----------------+
| 6.3 K | 768.0 M | /hbase |
| 0 | 0 | /tmp |
| 371.6 M | 743.2 M | /user |
+----------+--------------------------------------+----------------+
这篇关于使用du命令的HDFS文件系统的大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!