Troubleshooting

An HBase cluster does not run smoothly and expectedly sometimes, especially with bad configuration. This section covers the troubleshooting tools and techniques in brief for the HBase cluster running with ambiguous status. There are certain tools that are used while troubleshooting the HBase cluster. The following are some of the important tools that are preferred to be known to the administrators:

  • jps: This tool shows the Java processes running for the current user.
    $ $JAVA_HOME/bin/jps
    
  • jmap: This tool is used to view the Java heap summary. For example, the following command shows the summary for the HRegionServer daemon's heap:
    $ $JAVA_HOME/bin/jmap -heap 1812
    
  • ps: This tool is used to view the occupied memory by the processes. ...

Get HBase Essentials now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.