Skip to content

Commit e5f05bf

Browse files
symatbusbey
authored andcommitted
HBASE-21606 document meta table load metrics
Closes #369 Signed-off-by: Xu Cang <xcang@apache.org> Signed-off-by: Sakthi <sakthivel.azhaku@gmail.com> Signed-off-by: Sean Busbey <busbey@apache.org>
1 parent 8f56bee commit e5f05bf

File tree

1 file changed

+94
-0
lines changed

1 file changed

+94
-0
lines changed

src/main/asciidoc/_chapters/ops_mgt.adoc

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1738,6 +1738,100 @@ hbase.regionserver.authenticationFailures::
17381738
hbase.regionserver.mutationsWithoutWALCount ::
17391739
Count of writes submitted with a flag indicating they should bypass the write ahead log
17401740

1741+
[[rs_meta_metrics]]
1742+
=== Meta Table Load Metrics
1743+
1744+
HBase meta table metrics collection feature is available in HBase 1.4+ but it is disabled by default, as it can
1745+
affect the performance of the cluster. When it is enabled, it helps to monitor client access patterns by collecting
1746+
the following statistics:
1747+
1748+
* number of get, put and delete operations on the `hbase:meta` table
1749+
* number of get, put and delete operations made by the top-N clients
1750+
* number of operations related to each table
1751+
* number of operations related to the top-N regions
1752+
1753+
1754+
When to use the feature::
1755+
This feature can help to identify hot spots in the meta table by showing the regions or tables where the meta info is
1756+
modified (e.g. by create, drop, split or move tables) or retrieved most frequently. It can also help to find misbehaving
1757+
client applications by showing which clients are using the meta table most heavily, which can for example suggest the
1758+
lack of meta table buffering or the lack of re-using open client connections in the client application.
1759+
1760+
.Possible side-effects of enabling this feature
1761+
[WARNING]
1762+
====
1763+
Having large number of clients and regions in the cluster can cause the registration and tracking of a large amount of
1764+
metrics, which can increase the memory and CPU footprint of the HBase region server handling the `hbase:meta` table.
1765+
It can also cause the significant increase of the JMX dump size, which can affect the monitoring or log aggregation
1766+
system you use beside HBase. It is recommended to turn on this feature only during debugging.
1767+
====
1768+
1769+
Where to find the metrics in JMX::
1770+
Each metric attribute name will start with the ‘MetaTable_’ prefix. For all the metrics you will see five different
1771+
JMX attributes: count, mean rate, 1 minute rate, 5 minute rate and 15 minute rate. You will find these metrics in JMX
1772+
under the following MBean:
1773+
`Hadoop -> HBase -> RegionServer -> Coprocessor.Region.CP_org.apache.hadoop.hbase.coprocessor.MetaTableMetrics`.
1774+
1775+
.Examples: some Meta Table metrics you can see in your JMX dump
1776+
[source,json]
1777+
----
1778+
{
1779+
"MetaTable_get_request_count": 77309,
1780+
"MetaTable_put_request_mean_rate": 0.06339092997186495,
1781+
"MetaTable_table_MyTestTable_request_15min_rate": 1.1020599841623246,
1782+
"MetaTable_client_/172.30.65.42_lossy_request_count": 1786
1783+
"MetaTable_client_/172.30.65.45_put_request_5min_rate": 0.6189810954855728,
1784+
"MetaTable_region_1561131112259.c66e4308d492936179352c80432ccfe0._lossy_request_count": 38342,
1785+
"MetaTable_region_1561131043640.5bdffe4b9e7e334172065c853cf0caa6._lossy_request_1min_rate": 0.04925099917433935,
1786+
}
1787+
----
1788+
1789+
Configuration::
1790+
To turn on this feature, you have to enable a custom coprocessor by adding the following section to hbase-site.xml.
1791+
This coprocessor will run on all the HBase RegionServers, but will be active (i.e. consume memory / CPU) only on
1792+
the server, where the `hbase:meta` table is located. It will produce JMX metrics which can be downloaded from the
1793+
web UI of the given RegionServer or by a simple REST call. These metrics will not be present in the JMX dump of the
1794+
other RegionServers.
1795+
1796+
.Enabling the Meta Table Metrics feature
1797+
[source,xml]
1798+
----
1799+
<property>
1800+
<name>hbase.coprocessor.region.classes</name>
1801+
<value>org.apache.hadoop.hbase.coprocessor.MetaTableMetrics</value>
1802+
</property>
1803+
----
1804+
1805+
.How the top-N metrics are calculated?
1806+
[NOTE]
1807+
====
1808+
The 'top-N' type of metrics will be counted using the Lossy Counting Algorithm (as defined in
1809+
link:http://www.vldb.org/conf/2002/S10P03.pdf[Motwani, R; Manku, G.S (2002). "Approximate frequency counts over data streams"]),
1810+
which is designed to identify elements in a data stream whose frequency count exceed a user-given threshold.
1811+
The frequency computed by this algorithm is not always accurate but has an error threshold that can be specified by the
1812+
user as a configuration parameter. The run time space required by the algorithm is inversely proportional to the
1813+
specified error threshold, hence larger the error parameter, the smaller the footprint and the less accurate are the
1814+
metrics.
1815+
1816+
You can specify the error rate of the algorithm as a floating-point value between 0 and 1 (exclusive), it's default
1817+
value is 0.02. Having the error rate set to `E` and having `N` as the total number of meta table operations, then
1818+
(assuming the uniform distribution of the activity of low frequency elements) at most `7 / E` meters will be kept and
1819+
each kept element will have a frequency higher than `E * N`.
1820+
1821+
An example: Let’s assume we are interested in the HBase clients that are most active in accessing the meta table.
1822+
When there was 1,000,000 operations on the meta table so far and the error rate parameter is set to 0.02, then we can
1823+
assume that only at most 350 client IP address related counters will be present in JMX and each of these clients
1824+
accessed the meta table at least 20,000 times.
1825+
1826+
[source,xml]
1827+
----
1828+
<property>
1829+
<name>hbase.util.default.lossycounting.errorrate</name>
1830+
<value>0.02</value>
1831+
</property>
1832+
----
1833+
====
1834+
17411835
[[ops.monitoring]]
17421836
== HBase Monitoring
17431837

0 commit comments

Comments
 (0)