File count in an HDFS directory

前端 未结 6 2051
攒了一身酷
攒了一身酷 2021-01-31 10:36

In Java code, I want to connect to a directory in HDFS, learn the number of files in that directory, get their names and want to read them. I can already read the files but I co

6条回答
  •  半阙折子戏
    2021-01-31 10:58

    On command line, you can do it as below.

     hdfs dfs -ls $parentdirectory | awk '{system("hdfs dfs -count " $6) }'
    

提交回复
热议问题