Hbase部署问题解决

Hbase出现java.lang.NoClassDefFoundError: org/apache/htrace/SamplerBuilder

之前搭建Hbase集群的时候一直无法出现HMaster进程:
查看hbase-hadoop-master-master.log日志,发现master退出,并有如下异常
Hbase部署问题解决_第1张图片
在网上找了一些办法,有人提出使用如下命令:

cp $HBASE_HOME/lib/client-facing-thirdparty/htrace-core-3.1.0-incubating.jar $HBASE_HOME/lib/

解决了该问题,但并不知道具体原因,(待续)

java.lang.IllegalStateException: The procedure WAL relies on the ability to hsync for proper operation during component failures, but the underlying filesystem does not support doing so. Please check the config value of ‘hbase.procedure.store.wal.use.hsync’ to set the desired level of robustness and ensure the config value of ‘hbase.wal.dir’ points to a FileSystem mount that can provide it.

Hbase部署问题解决_第2张图片
参考了网上一些博客https://blog.csdn.net/SL_World/article/details/84952725

解决方案:

在habse-site.xml文件中添加如下属性:


  hbase.unsafe.stream.capability.enforce
  false

这个属性主要作用是禁止检查流功能(stream capabilities)[hflush/hsync]。

你可能感兴趣的:(Hbase)