From d6a24bcf962a279c2ee2e9cdd441e6fbc2f49abd Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Wed, 22 Jun 2011 05:29:10 +0000 Subject: [PATCH] HBASE-3990 troubleshooting.xml - adding section for NameNode with hadoop shell cmds for disk utilization git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1138307 13f79535-47bb-0310-9956-ffa450edef68 --- src/docbkx/troubleshooting.xml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/docbkx/troubleshooting.xml b/src/docbkx/troubleshooting.xml index 731bc419ab9..12957d85486 100644 --- a/src/docbkx/troubleshooting.xml +++ b/src/docbkx/troubleshooting.xml @@ -458,7 +458,18 @@ hadoop 17789 155 35.2 9067824 8604364 ? S<l Mar04 9855:48 /usr/java/j - + +
+ NameNode +
+ HDFS Utilization of Tables and Regions + To determine how much space HBase is using on HDFS use the hadoop shell commands from the NameNode. For example... + hadoop fs -dus /hbase/ ...returns the summarized disk utilization for all HBase objects. + hadoop fs -dus /hbase/myTable ...returns the summarized disk utilization for the HBase table 'myTable'. + hadoop fs -du /hbase/myTable ...returns a list of the regions under the HBase table 'myTable' and their disk utilization. +
+
+
RegionServer