AJm
AJm

Reputation: 1023

Count command in Hadoop

What information exactly the hdfs dfs -count gives. It shows 3 columns in the output. What does this 3 columns signifies

**

hdfs dfs -count <path>
 **5         3603         2099476898    <path>**

**

Upvotes: 5

Views: 10481

Answers (2)

venBigData
venBigData

Reputation: 620

Understanding HDFS Quotas helped me while I was trying to modify the quota.

Upvotes: 0

Ronak Patel
Ronak Patel

Reputation: 3849

The output columns with -count are: DIR_COUNT, FILE_COUNT, CONTENT_SIZE, PATHNAME

see details here - count

Upvotes: 3

Related Questions