使用hbase创建namespace和table时提示该错误,完整的错误日志如下:
按照网上的解决思路:
1、设置主机之间的NTP时间同步。
2、修改hbase-site.xml配置文件
<property>
<name>hbase.rootdir</name>
<value>hdfs:
//node1:8020/hbase</value>
</property>
重启hbase服务后还是没有解决。最后想到这种问题还是老外的经验更丰富,使用微软的Bing搜索,搜索:
Master startup cannot progress, in holding-pattern until region onlined
果然找到了对应的解决办法,参考地址:
1、
https://stackoverflow.com/questions/53409817/master-startup-cannot-progress-in-holding-pattern-until-region-onlined
2、http://www.bubuko.com/infodetail-2996641.html
出现该问题的原因是因为重新安装hbase时,旧的元数据信息没有删除,使用zookeeper删除后hbase元数据后重启hbase即可。
解决过程:
1、找到zookeeper的安装目录,centos系统下默认为/usr/bin
cd /usr/bin
ll输出如下:
打开zookeeper客户端,并连接到服务器
zookeeper-client -server localhost:2181
输入命令:ls
可以看到hbase的目录
ls /hbase
mete-region-server就是需要删除的文件,执行删除命令:rmr /hbase/meta-region-server
输入quit退出,重启hbase,问题解决。
转载请注明:SuperIT » hbase出现org.apache.hadoop.hbase.PleaseHoldException: Master is initializing错误解决