Return-Path: X-Original-To: apmail-hbase-user-archive@www.apache.org Delivered-To: apmail-hbase-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DB8FD928C for ; Sat, 28 Jul 2012 09:28:30 +0000 (UTC) Received: (qmail 1246 invoked by uid 500); 28 Jul 2012 09:28:29 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 770 invoked by uid 500); 28 Jul 2012 09:28:20 -0000 Mailing-List: contact user-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@hbase.apache.org Delivered-To: mailing list user@hbase.apache.org Received: (qmail 746 invoked by uid 99); 28 Jul 2012 09:28:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Jul 2012 09:28:19 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FSL_RCVD_USER,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of saint.ack@gmail.com designates 209.85.214.169 as permitted sender) Received: from [209.85.214.169] (HELO mail-ob0-f169.google.com) (209.85.214.169) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Jul 2012 09:28:11 +0000 Received: by obhx4 with SMTP id x4so7031156obh.14 for ; Sat, 28 Jul 2012 02:27:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=jyWd7AwDzwXtkeOsPEbMKmapaZSR/sQKyudFgB9LKu8=; b=IhYqY48Uk3INRFG2lgw5Qy1Pm0YyN36kzyjxKmu23K9JUOURFJfbV/ItllmD00pWJH IKR60a3TnDCcvxbX4rlbHWlGk7q47NJDmbDdzPcfEM1EdVrkoz9xnFh91wv03ydOqMlz FYa1c5/dpanMA7+4syj9i5Zc9bf0YJhihZPgdnjdVK2IngrwA1JnwaCqlvFy7YpBFo3H d5gKbpJ47LgcMQYx6XPhc4POlI//AtkOlitNAjRZqxcYNeIkWsErY9aToMk4TtZOReMt OKhfzDhSgPJCvgIo5+e8E8Oqbbck184wDMQzCqPgcVjW7ueDjlwqXt2YYnXekGrtGNpp 2KFw== MIME-Version: 1.0 Received: by 10.182.111.39 with SMTP id if7mr7522328obb.56.1343467670371; Sat, 28 Jul 2012 02:27:50 -0700 (PDT) Sender: saint.ack@gmail.com Received: by 10.76.73.5 with HTTP; Sat, 28 Jul 2012 02:27:50 -0700 (PDT) In-Reply-To: References: Date: Sat, 28 Jul 2012 11:27:50 +0200 X-Google-Sender-Auth: jRbZgeb73mPF_5wsIUq7eXAzD_w Message-ID: Subject: Re: HBase client load balancing From: Stack To: user@hbase.apache.org Content-Type: text/plain; charset=ISO-8859-1 On Sat, Jul 28, 2012 at 12:56 AM, Mohit Anchlia 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