Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

we have set up CDH4 (hdfs, hbase, hue, mapreduce, oozie and zookeeper) on a test cluster using the Cloudera Manager. Everything works fine except we can not seem to figure out how to make the nodes communicate via eth1 in a private network while still accessing the manager via eth0 from outside. Any suggestions on where to configure that?

Thanks for your replies.

share|improve this question

1 Answer

by manager I assume you are referring to the HBase master. You should know that clients that connect to HBase connect to regionservers (they connect to ZooKeeper quorom, which in turn points them at a regionserver).

You can get the cluster to use an one NIC over the other with hbase.master.dns.interface, hbase.regionserver.dns.interface and hbase.zookeeper.dns.interface settings in the hbase-default.xml (see config files in HBase Book)

However, as noted above that will not solve your problem. I guess you can use the REST or ThriftServer as an external API and then have that access HBase over the internal network

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.