标签:keep print str eps evel src level for val
ClusterId read in ZooKeeper is null.
Re-running the program after fixing issue 1 will result in the following error in the log file (Oddly logged at INFO level)
现象1: baseZNode = /hbase
现象2:ClusterId read in ZooKeeper is nul
检查Nodes
解决办法
The HBase clients will discover the running HBase cluster using the following two properties:
The value of zookeeper.znode.parent in hbase-1.2.0-cdh5.14.2/conf/hbase-site.xml is specified as /HBase (see below) which is correct but for some reason (still trying to figure this out), the value being printed is /hbase (现象1).
So currently I’ve overridden this programatically in the client program by adding the following line to the program
conf.set(“zookeeper.znode.parent”, “/HBase”);
ClusterId read in ZooKeeper is null 处理
标签:keep print str eps evel src level for val
原文地址:https://www.cnblogs.com/shareforever-999/p/11874796.html