hdfs怎么查看文件行數(shù)

小億
397
2024-04-01 16:21:55

可以使用以下命令查看HDFS中文件的行數(shù):

  1. 使用hdfs dfs -cat命令查看文件內(nèi)容,并使用管道符|將其傳遞給wc -l命令來(lái)統(tǒng)計(jì)行數(shù)。例如:
hdfs dfs -cat /path/to/file.txt | wc -l
  1. 使用hadoop fs -cat命令查看文件內(nèi)容,并使用管道符|將其傳遞給wc -l命令來(lái)統(tǒng)計(jì)行數(shù)。例如:
hadoop fs -cat /path/to/file.txt | wc -l

這兩種方法都可以在HDFS上查看文件的行數(shù)。

0