You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@hbase.apache.org by Mohit Anchlia <mo...@gmail.com> on 2012/07/28 00:56:34 UTC

HBase client load balancing

Does HBase client load balances accross the nodes for the initial
connection it creates or do the applications need to somehow load balance
the connections?

Re: HBase client load balancing

Posted by Stack <st...@duboce.net>.
On Sat, Jul 28, 2012 at 12:56 AM, Mohit Anchlia <mo...@gmail.com> wrote:
> Does HBase client load balances accross the nodes for the initial
> connection it creates or do the applications need to somehow load balance
> the connections?

No.

Client puts row into the region that is responsible for it.  If you
are asking client to put rows that all fit a single region only, then
that is what it will do.

St.Ack