GO-HADOOP wrote:
I am still not able to connect dfs cluster from the laptop which is in
windows box. My windows box does not have dfs cluster running.
In the given examples i see
HBaseConfiguration config = new HBaseConfiguration()
will do everything.
What i am looking for is, is there a way to do something like
HBaseConfiguraiton config = new HBaseConfiguration(server:port)
Set the hbase.master property in your hbase.site.xml or on your new
config instance above, do configset("hbase.master", "server:port").
I would suggest you read the hbase getting started documentation or the
hbase in ten minutes up on the wiki.
St.Ack