diff --git a/src/main/docbkx/ops_mgt.xml b/src/main/docbkx/ops_mgt.xml
index ffcf1ceb8cd..7328f677fc4 100644
--- a/src/main/docbkx/ops_mgt.xml
+++ b/src/main/docbkx/ops_mgt.xml
@@ -2062,6 +2062,17 @@ hbase> restore_snapshot 'myTableSnapshot-122112'
xrefstyle="template:above" /> should be. So, if your data is compressed and
replicated 3 ways by HDFS, "9 Gb region" means 9 Gb of compressed data. HDFS replication
factor only affects your disk usage and is invisible to most HBase code.
+
+ Viewing the Current Number of Regions
+ You can view the current number of regions for a given table using the HMaster UI. In
+ the Tables section, the number of online regions for each table is
+ listed in the Online Regions column. This total only includes the
+ in-memory state and does not include disabled or offline regions. If you do not want to
+ use the HMaster UI, you can determine the number of regions by counting the number of
+ subdirectories of the /hbase/<table>/ subdirectories in HDFS, or by running the
+ bin/hbase hbck command. Each of these methods may return a slightly
+ different number, depending on the status of each region.
+
Number of regions per RS - upper bound