Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 4977 invoked from network); 28 Oct 2008 20:54:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Oct 2008 20:54:15 -0000 Received: (qmail 2945 invoked by uid 500); 28 Oct 2008 20:54:20 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 2783 invoked by uid 500); 28 Oct 2008 20:54:20 -0000 Mailing-List: contact core-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-commits@hadoop.apache.org Received: (qmail 2771 invoked by uid 99); 28 Oct 2008 20:54:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Oct 2008 13:54:20 -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.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Oct 2008 20:53:06 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 3AB28118DB for ; Tue, 28 Oct 2008 20:53:16 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: core-commits@hadoop.apache.org Date: Tue, 28 Oct 2008 20:53:15 -0000 Message-ID: <20081028205315.25875.93833@eos.apache.org> Subject: [Hadoop Wiki] Update of "Hbase/HbaseRest" by pirroh X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification. The following page has been changed by pirroh: http://wiki.apache.org/hadoop/Hbase/HbaseRest ------------------------------------------------------------------------------ multipart response. The client must be prepared to parse the column values out of the data. - Options: + Parameters: + column: specify one or more column parameters (&-separated) to get the content of specific cells. If omitted, the result will contain all columns in the row. - columns: A semicolon-delimited list of column names. If omitted, the result will contain all columns in the row. - - ~-''St.Ack comment 11/17/2007: Only one column allowed in hbase currently.-~ '''POST/PUT /[table_name]/row/[row_key]/''' @@ -167, +165 @@ Multipart/related: The client is sending multiple columns of data encoded with boundaries. + Parameters: + column: specify one or more column parameters (&-separated) to get the content of specific cells. If omitted, the result will contain all columns in the row.. - Options: - - columns: A semicolon-delimited list of column names. This attribute is ignored when the Content-type is application/xml. Returns: HTTP 200 (OK) if the column(s) could successfully be saved. HTTP 415 (Unsupported Media Type) if @@ -183, +180 @@ Delete the specified columns from the row. If there are no columns specified, then it will delete ALL columns. Optionally, specify a timestamp. + Parameters: + Column: specify one or more column parameters (&-separated) to get the content of specific cells. If omitted, the result will contain all columns in the row. - Options: - - columns: A semicolon-delimited list of column names. If omitted, the result will delete all columns in the row. Returns: HTTP 202 (Accepted) if the column(s) were deleted. @@ -196, +192 @@ '''POST/PUT /[table_name]/scanner''' Request that a scanner be created with the specified options. Returns a scanner ID that can be used to iterate over the results of the scanner. + Parameters: + column: specify one or more column parameters (&-separated) to get the content of specific cells. If omitted, the result will contain all columns in the row. - Options: - - columns: A semicolon-delimited list of column names. If omitted, each result will contain all columns in the row. start_row, end_row: Starting and ending keys that enclose the region that should be scanned.