Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@minotaur.apache.org Received: (qmail 95134 invoked from network); 12 Aug 2009 13:59:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 12 Aug 2009 13:59:30 -0000 Received: (qmail 17399 invoked by uid 500); 12 Aug 2009 13:59:37 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 17365 invoked by uid 500); 12 Aug 2009 13:59:37 -0000 Mailing-List: contact hbase-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hbase-dev@hadoop.apache.org Delivered-To: mailing list hbase-dev@hadoop.apache.org Received: (qmail 17355 invoked by uid 99); 12 Aug 2009 13:59:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Aug 2009 13:59:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Aug 2009 13:59:34 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id D3AF2234C04B for ; Wed, 12 Aug 2009 06:59:14 -0700 (PDT) Message-ID: <637221979.1250085554866.JavaMail.jira@brutus> Date: Wed, 12 Aug 2009 06:59:14 -0700 (PDT) From: "stack (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Updated: (HBASE-1761) getclosest doesn't understand delete family; manifests as "HRegionInfo was null or empty in .META" A.K.A the BS problem In-Reply-To: <802454123.1250037614841.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-1761?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] stack updated HBASE-1761: ------------------------- Attachment: 1761-v2.patch Memstore refactoring done with some tests passing. Now to go at StoreFiles. > getclosest doesn't understand delete family; manifests as "HRegionInfo was null or empty in .META" A.K.A the BS problem > ----------------------------------------------------------------------------------------------------------------------- > > Key: HBASE-1761 > URL: https://issues.apache.org/jira/browse/HBASE-1761 > Project: Hadoop HBase > Issue Type: Bug > Reporter: stack > Fix For: 0.20.0 > > Attachments: 1761-v2.patch, 1761.patch > > > getclosestatorbefore was not converted to deal with the new delete types. It only knows how to process old style deletes. Usually all is well as edits come in but its possible to get into state where you have persisted in one file a deletefamily for all in meta and in the file behind it, there are entries on the info family. Since closest doesn't understand deletefamily, it will return the Put rows only for the subsequent getfull, which knows how to work with deletefamilies fail. > Once this happens, table is hosed. Seen on Bradford Stephens upload and at Powerset. "Fix" is flush and major compact. Gives impression that hbase is 'delicate'. Fixing. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.