I am trying to use command hdfs dfs - du -h
to list the size of files and folders.
The command I use is hdfs dfs - du -h /path_name/folder_name
, the result returned is like
9.2 G 27.5 G /path_name/folder_name/xxx01.parquet
0 0 /path_name/folder_name/xxx02.parquet
19.9 M 59.6 M /path_name/folder_name/xxx03.parquet
I know the hadoop command line is borrowing a lot from general file system command, and -du -h
is to list a human readable folder/file size. However, (take the first result line as an example ) what is the meaning for these two numbers 9.2 G 27.5 G
respectively?
Thanks!