Return-Path: Delivered-To: apmail-lucene-hadoop-commits-archive@locus.apache.org Received: (qmail 10761 invoked from network); 9 Dec 2007 06:59:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Dec 2007 06:59:57 -0000 Received: (qmail 9655 invoked by uid 500); 9 Dec 2007 06:59:45 -0000 Delivered-To: apmail-lucene-hadoop-commits-archive@lucene.apache.org Received: (qmail 9631 invoked by uid 500); 9 Dec 2007 06:59:45 -0000 Mailing-List: contact hadoop-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hadoop-dev@lucene.apache.org Delivered-To: mailing list hadoop-commits@lucene.apache.org Received: (qmail 9622 invoked by uid 99); 9 Dec 2007 06:59:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 08 Dec 2007 22:59:45 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Dec 2007 06:59:55 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 3B466D2E6 for ; Sun, 9 Dec 2007 06:59:34 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: hadoop-commits@lucene.apache.org Date: Sun, 09 Dec 2007 06:59:34 -0000 Message-ID: <20071209065934.23579.39295@eos.apache.org> Subject: [Lucene-hadoop Wiki] Update of "Hbase/ThriftApi" by BryanDuxbury X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Lucene-hadoop Wiki" for change notification. The following page has been changed by BryanDuxbury: http://wiki.apache.org/lucene-hadoop/Hbase/ThriftApi ------------------------------------------------------------------------------ 1:string name, 2:int32 maxVersions, 3:bool compression + } + }}} + + ==== regionDescriptor ==== + Used by getTableRegions. + + {{{ + struct regionDescriptor { + 1:string startKey, + 2:string host + } + }}} + + ==== mutation ==== + + Used when performing batch update operations. + + {{{ + struct mutation { + 1:bool isDelete="false", + 2:string columnName, + 3:string value } }}} @@ -61, +83 @@ ==== Mutate Row (Put) ==== Send a series of mutation commands (put, delete) to the table. + {{{ + void mutateRow(string tableName, string row, list mutations), + void mutateRow(string tableName, string row, list mutations, i64 timestamp) + }}} + ==== Delete Row ==== Delete an entire row.