Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@locus.apache.org Received: (qmail 67543 invoked from network); 29 Aug 2008 22:34:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Aug 2008 22:34:12 -0000 Received: (qmail 50306 invoked by uid 500); 29 Aug 2008 22:34:03 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 50295 invoked by uid 500); 29 Aug 2008 22:34:03 -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 50277 invoked by uid 99); 29 Aug 2008 22:34:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Aug 2008 15:34:03 -0700 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; Fri, 29 Aug 2008 22:33:13 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4CC89234C1C2 for ; Fri, 29 Aug 2008 15:33:44 -0700 (PDT) Message-ID: <104539200.1220049224313.JavaMail.jira@brutus> Date: Fri, 29 Aug 2008 15:33:44 -0700 (PDT) From: "stack (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Commented: (HBASE-832) Problem with row keys beginnig with characters < than ',' and the region location cache In-Reply-To: <2007237209.1218734984276.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-832?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12627133#action_12627133 ] stack commented on HBASE-832: ----------------------------- Yeah, I mean doing compareTo... Add tests to the testHStoreKey method that take the messy meta keys. > Problem with row keys beginnig with characters < than ',' and the region location cache > --------------------------------------------------------------------------------------- > > Key: HBASE-832 > URL: https://issues.apache.org/jira/browse/HBASE-832 > Project: Hadoop HBase > Issue Type: Bug > Components: client, regionserver > Affects Versions: 0.2.0 > Reporter: Jean-Daniel Cryans > Assignee: Jean-Daniel Cryans > Priority: Blocker > Fix For: 0.2.1, 0.18.0 > > Attachments: hbase-832-v1.patch, hbase-832-v2.patch > > > We currently have a problem the way we design .META. row keys. When user table row keys begin with characters lesser than ',' like a '$', any operation will fail when: > - A client has a certain set of regions in cache > - One region with the faulty row key splits > - The client receives a request for a row in the split region > The reason is that it will first get a NSRE then it will try to locate a region using the passed row key. For example: > Row in META: entities,,1216750777411 > Row passed: entities,$-94f9386f-e235-4cbd-aacc-37210a870991,99999999999999 > The passed row is lesser then the row in .META. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.