更新时间:2023-06-20 GMT+08:00
分享

查看Windows调测结果

操作场景

HBase应用程序运行完成后,可通过如下方式查看运行情况。

  • 通过IntelliJ IDEA运行结果查看应用程序运行情况。
  • 通过HBase日志获取应用程序运行情况。
  • 登录HBase WebUI查看应用程序运行情况。可参见更多信息 > 对外接口 > Web UI
  • 通过HBase shell命令查看应用程序运行情况。可参见更多信息 > 对外接口 > Shell

操作步骤

  • hbase-example样例运行成功后,显示信息如下:
    ...
    2020-09-09 22:11:48,496 INFO  [main] example.TestMain: Entering testCreateTable.
    2020-09-09 22:11:48,894 INFO  [main] example.TestMain: Creating table...
    2020-09-09 22:11:50,545 INFO  [main] example.TestMain: Master: 10-1-131-140,16000,1441784082485
    Number of backup masters: 1
      10-1-131-130,16000,1441784098969
    Number of live region servers: 3
      10-1-131-150,16020,1441784158435
      10-1-131-130,16020,1441784126506
      10-1-131-140,16020,1441784118303
    Number of dead region servers: 0
    Average load: 1.0
    Number of requests: 0
    Number of regions: 3
    Number of regions in transition: 0
    2020-09-09 22:11:50,562 INFO  [main] example.TestMain: Lorg.apache.hadoop.hbase.NamespaceDescriptor;@11c6af6
    2020-09-09 22:11:50,562 INFO  [main] example.TestMain: Table created successfully.
    2020-09-09 22:11:50,563 INFO  [main] example.TestMain: Exiting testCreateTable.
    2020-09-09 22:11:50,563 INFO  [main] example.TestMain: Entering testMultiSplit.
    2020-09-09 22:11:50,630 INFO  [main] example.TestMain: MultiSplit successfully.
    2020-09-09 22:11:50,630 INFO  [main] example.TestMain: Exiting testMultiSplit.
    2020-09-09 22:11:50,630 INFO  [main] example.TestMain: Entering testPut.
    2020-09-09 22:11:51,148 INFO  [main] example.TestMain: Put successfully.
    2020-09-09 22:11:51,148 INFO  [main] example.TestMain: Exiting testPut.
    2020-09-09 22:11:51,148 INFO  [main] example.TestMain: Entering createIndex.
    ...

    在Windows环境运行样例代码时会出现下面的异常,但是不影响业务:

    java.io.IOException: Could not locate executable null\bin\winutils.exe in the Hadoop binaries.

  • 日志说明

    日志级别默认为INFO,可以通过调整日志打印级别(DEBUG,INFO,WARN,ERROR,FATL)来显示更详细的信息。可以通过修改“log4j.properties”文件来实现,如:

    hbase.root.logger=INFO,console
    ...
    log4j.logger.org.apache.zookeeper=INFO
    #log4j.logger.org.apache.hadoop.fs.FSNamesystem=DEBUG
    log4j.logger.org.apache.hadoop.hbase=INFO
    # Make these two classes DEBUG-level. Make them DEBUG to see more zk debug.
    log4j.logger.org.apache.hadoop.hbase.zookeeper.ZKUtil=INFO
    log4j.logger.org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher=INFO
    ...
分享:

    相关文档

    相关产品