Return-Path: Delivered-To: apmail-hbase-user-archive@www.apache.org Received: (qmail 33555 invoked from network); 14 Mar 2011 20:32:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 14 Mar 2011 20:32:23 -0000 Received: (qmail 9655 invoked by uid 500); 14 Mar 2011 20:32:21 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 9628 invoked by uid 500); 14 Mar 2011 20:32:21 -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 9620 invoked by uid 99); 14 Mar 2011 20:32:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Mar 2011 20:32:21 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of jason.rutherglen@gmail.com designates 209.85.216.169 as permitted sender) Received: from [209.85.216.169] (HELO mail-qy0-f169.google.com) (209.85.216.169) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Mar 2011 20:32:14 +0000 Received: by qyk2 with SMTP id 2so1987321qyk.14 for ; Mon, 14 Mar 2011 13:31:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type:content-transfer-encoding; bh=vx3la4HwIpPzjRnBl0Vnzx3koDZoYV66J4kYWmWndW4=; b=HJf78JC1nlw56WUHJvG4c76QRidvrrinDSenHdtHatx1BeuWNRrwsZ/Ojdt+Cjkldj viZBKEVLYmHr8C3Ko6srG9GxrKCxhRtKqfnr5qXmUghseTX3dcATH24cQwT3Zi4WDjE3 WsQuFXJ8zcXBk1vSY/WpgD2NiCq9NswQwz47k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=R4OXebcFVI0WAgnY1PuBhxjazIUlisu8OEvQX4reKSENPffVUEZpkav48PwRNyQPZY n97m9kNTEMlVgpUzzmg+g+S+e8offYUEhBrfSAPbfHJdAcy1r+yAJlsdZSNv6VUlUz+E GoUCKn+HfDRZY6iLQHBAixZ4rF0jS6pE/FtNI= MIME-Version: 1.0 Received: by 10.224.193.135 with SMTP id du7mr2536674qab.232.1300134712867; Mon, 14 Mar 2011 13:31:52 -0700 (PDT) Received: by 10.229.186.15 with HTTP; Mon, 14 Mar 2011 13:31:52 -0700 (PDT) In-Reply-To: References: Date: Mon, 14 Mar 2011 13:31:52 -0700 Message-ID: Subject: Re: Getting the row with a Coprocessor From: Jason Rutherglen To: user@hbase.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Gary, I've called KV.getRow() however there has been nothing returned, or for the 'info' family, values other than what the Put object was given. > Sorry, not sure what you mean by the info family? =A0You mean in the .MET= A. > table or somewhere else? =A0In .META. it holds one row per region for eac= h > user table in HBase. Info seems to be a family that's given to the Coprocessor, at least when the test case uses HBaseTestingUtility. Jason On Mon, Mar 14, 2011 at 1:28 PM, Gary Helmling wrote: > You can get the row key from the KeyValue entries in the map. =A0Just cal= l > KeyValue.getRow(). > > Sorry, not sure what you mean by the info family? =A0You mean in the .MET= A. > table or somewhere else? =A0In .META. it holds one row per region for eac= h > user table in HBase. > > > On Mon, Mar 14, 2011 at 12:53 PM, Jason Rutherglen < > jason.rutherglen@gmail.com> wrote: > >> I've subclassed RegionObserver and am overriding postPut. =A0How does >> one obtain the row byte[] of the Put that generated the call? =A0Is it >> available via from the familyMap? =A0What is the purpose of the info >> family? >> >