HBase
HBase JMX metrics
HBase exposes several metrics via JMX beans, some of which are similar to the Oracle performance counters recorded by AWR. Actually, they aren’t even *close* to what Oracle provides, but one can hope Below is a simple example of how these can be exposed: Download the jmx command line client jar from http://crawler.archive.org/cmdline-jmxclient/downloads.html Configure... »
Printing all property values in an HBase configuration
I’m sure there is an easier (perhaps built-in) way to do this, but for now, I wanted to document how you can print all properties for a given configuration that you load into a JVM. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19... »