hbase启动后,hmaser进程会自动关闭

查看日志,显示如下是信息:

ERROR [Thread-13] master.HMaster: ***** ABORTING master master,16000,1548295307560: Unhandled exception. Starting shutdown. *****
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-site.xml增加配置 

<property>
<name>hbase.unsafe.stream.capability.enforce</name>
<value>false</value>
</property>

猜你喜欢

转载自blog.csdn.net/xuexi_39/article/details/86622237
今日推荐