Return-Path: Delivered-To: apmail-hbase-user-archive@www.apache.org Received: (qmail 67043 invoked from network); 8 Apr 2011 13:35:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 8 Apr 2011 13:35:41 -0000 Received: (qmail 78868 invoked by uid 500); 8 Apr 2011 13:35:40 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 78815 invoked by uid 500); 8 Apr 2011 13:35:40 -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 78807 invoked by uid 99); 8 Apr 2011 13:35:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Apr 2011 13:35:40 +0000 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests=FREEMAIL_FROM,SPF_HELO_PASS,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of gcjhhu-hbase-user@m.gmane.org designates 80.91.229.12 as permitted sender) Received: from [80.91.229.12] (HELO lo.gmane.org) (80.91.229.12) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Apr 2011 13:35:31 +0000 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Q8Bq5-0004Oz-VP for user@hbase.apache.org; Fri, 08 Apr 2011 15:35:06 +0200 Received: from office.europarchive.org ([82.224.187.234]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 08 Apr 2011 15:35:05 +0200 Received: from stanislav.barton by office.europarchive.org with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 08 Apr 2011 15:35:05 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: user@hbase.apache.org From: Stan Barton Subject: Re: question about region assignment Date: Fri, 8 Apr 2011 13:32:30 +0000 (UTC) Lines: 42 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 82.224.187.234 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0) Gecko/20100101 Firefox/4.0) X-Virus-Checked: Checked by ClamAV on apache.org Jack Levin writes: > > I am on 0.89-830 > > On Tue, Mar 29, 2011 at 10:44 AM, Ted Yu wrote: > > Are you using 0.90.1 (where regions are randomly distributed across cluser) > > ? > > I logged HBASE-3373 but was told it is specific to our usage. > > > > On Tue, Mar 29, 2011 at 10:39 AM, Jack Levin wrote: > > > >> Hello, we have this one table what about 12 regions, that is super hot > >> with writes, for some reason most of the regions were assigned to a > >> single server, which cause it to flush and compact every 10 minutes, > >> causing suboptimal performance.  We do use random row_keys, so I don't > >> see how sorted ROWs can land on single region anyway, the issue was > >> that each region was assigned to the same region server, is there a > >> way to mitigate the issue?  I closed closing the regions manually, but > >> they went right back to the same server, finally I shutdown RS > >> process, and that table's regions went in random places around the > >> cluster, but still its puzzling, anyone had issues like that? > >> > >> -Jack > >> > > > > hello, I am encountering the same problem with 0.90.1. All the created regions (via inserting puts via java api) are assigned to a single region server. What is interesting is that the load balancing works, since the number of regions is changing on all regionservers - some 'old' regions on the highly loaded regionserver are being re-assigned to other regionservers. I guess this is a bug, since the system is sort of unusable like this. Stan