Hbase error zookeeper exists failed after 3 retiries

后端 未结 6 1236
抹茶落季
抹茶落季 2021-01-11 23:44

I am using HBASE 0.94.8 standalone mode in Ubuntu. Its working fine i am able to do every operations in Hbase-shell. But after i logged of my system its giving following err

6条回答
  •  借酒劲吻你
    2021-01-12 00:41

    It looks like the issue is not related to hbase or zookeeper. It is a system setting issue.

    I've got the same issue after my Mac OS X update.

    It turned out that DNS settings were changed by the update. I saw that in hbase logs:

    2017-06-09 11:40:18,454 ERROR [main] master.HMasterCommandLine: Master exiting
    java.lang.RuntimeException: Failed construction of Master: class org.apache.hadoop.hbase.master.HMasterCommandLine$LocalHMaster
        at org.apache.hadoop.hbase.util.JVMClusterUtil.createMasterThread(JVMClusterUtil.java:143)
    [SKIP]
        at org.apache.hadoop.hbase.master.HMaster.main(HMaster.java:2432)
    Caused by: java.lang.NullPointerException
        at org.apache.hadoop.net.DNS.reverseDns(DNS.java:92)
    

    After removing DNS settings in hbase-site.xml the issue dissipeared:

      
    

提交回复
热议问题