1

I have used the command

hdfs dfs -du -h /hbase/data/default/

as indicated here: How do I determine the size of my HBase Tables ?. Is there any command to do so? to view the sizes of the hbase tables. However, there are 2 numbers appearing in the output as in the following example:

... 2.7 M 8.1 M /hbase/data/default/rTblCM_opt 9.4 M 28.2 M /hbase/data/default/rTblCM_std

What is the meaning of these numbers?

Thanks

Community
  • 1
  • 1
fokatsar
  • 13
  • 4

1 Answers1

3

First number is the table size without replication, second number with replication. It seems that your replication factor in hadoop cluster is equal 3.

Alexander Kuznetsov
  • 3,062
  • 2
  • 25
  • 29