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 A738391D7 for ; Mon, 2 Jul 2012 22:32:58 +0000 (UTC) Received: (qmail 33020 invoked by uid 500); 2 Jul 2012 22:32:56 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 32977 invoked by uid 500); 2 Jul 2012 22:32:56 -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 32968 invoked by uid 99); 2 Jul 2012 22:32:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Jul 2012 22:32:56 +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 svarma.ng@gmail.com designates 209.85.214.41 as permitted sender) Received: from [209.85.214.41] (HELO mail-bk0-f41.google.com) (209.85.214.41) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Jul 2012 22:32:50 +0000 Received: by bkcjc3 with SMTP id jc3so3244616bkc.14 for ; Mon, 02 Jul 2012 15:32:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=1S5mMDMyY/xAan56kw1HeEYWnAGsoX5S1Fx1iKofi2E=; b=eHOirvw6VKD7iCoIRcF/E1EIeeyNRaJELmnmBMRiv9mpTm0F64tlj+C+VmZwWTjJTx Eux84vJEnu2OogWgcanSbSe9IRiGfQUsyiPNHmn530zjjDdjHnboNgAudf37TrYlriyl TPOrjJSWu29pwUcxW+9FnuK3ppSF9abO/Yz01LElAhGwXokGDH1pf6n2+fLc1zc3+qtO ab7rIYBnhdAEXwHkx2/GKLIllySGTFmCA9d8NuOj4r1iQqlLd9SUs2ezxa9yB5PW6xcO Qf6k6m4jq28AdViggIBLVI0eVyOZjeNA9GROJEc2D6u3WVAUjJkbedQI7GQB21sPMO9z hZvQ== MIME-Version: 1.0 Received: by 10.204.152.152 with SMTP id g24mr8275657bkw.104.1341268349901; Mon, 02 Jul 2012 15:32:29 -0700 (PDT) Received: by 10.204.178.198 with HTTP; Mon, 2 Jul 2012 15:32:29 -0700 (PDT) In-Reply-To: References: Date: Mon, 2 Jul 2012 15:32:29 -0700 Message-ID: Subject: Re: regions unlinked from table From: Suraj Varma To: user@hbase.apache.org Content-Type: text/plain; charset=ISO-8859-1 Try doing an hbase hbck to see if it reports inconsistency. And do an hbase hbck -fix to see if it fixes it for you. See http://hbase.apache.org/book.html#hbck.in.depth Note that since 0.90.4 is old, some of the documented options won't be available ... but hbase hbck -fix will be available. --S On Mon, Jul 2, 2012 at 7:34 AM, Bryan Beaudreault wrote: > Hey all, > > I'm running hbase 0.90.4, and somehow the regions for one of my tables have > become unlinked from the table itself. The Master UI shows no regions for > the table, and attempting to call Table.getRegionsInfo() returns nothing. > However, I can see the regions in hdfs in their proper location and doing > a scan of the table via the hbase shell does return results. I also get > results if I do a Get for a specific rowkey. > > How can I get these regions back associated with the table, and any idea > why this may have happened? I tried grepping the hmaster logs but didn't > see anything relevant. > > Thanks! > > Bryan