Hi all, I am trying to connect to a remote hbase from my local M/R job (to populate an hbase table with results) Since my job is local I am not using any configuration files but pass all the conf properties with -D arguments.
I am passing "hbase.zookeeper.quorum" and "hbase.master" paths in the Configuration to the HBaseAdmin() constructor. However, I am getting KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master when the zookeeper client asks for the master address. Am I missing some other parameters for the client? It seems like "hbase.master" property that I provide is ignored. I know that both remote zookeeper and hbase work fine (i am able to use hbase shell, create and list tables, HBase Web UI works as well). The zookeper instance is managed by hbase. Also when I look at the zookeper log, I see that my client gets connected. But no errors logged. Thanks!
