I have a standlone HBase server. This is my hbase-site.xml:
<configuration>
<property>
<name>hbase.rootdir</name>
<value>file:///hbase_data</value>
</property>
</configuration>
I am trying to write a Java program to manipulate the data in the HBase.
If I run the program on the HBase server, it works fine. But I don't know how to config it for remote access.
Configuration config = HBaseConfiguration.create();
HTable table = new HTable(config, "test");
Scan s = new Scan();
I have tried adding IP and Port, it doesn't work:
config.set("hbase.master", "146.169.35.28:60000")
Can anyone tell me how to do it?
Thanks!