You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by Apache Wiki <wi...@apache.org> on 2009/03/04 08:05:51 UTC

[Hadoop Wiki] Trivial Update of "Hbase/HbaseRest" by stack

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 stack:
http://wiki.apache.org/hadoop/Hbase/HbaseRest

------------------------------------------------------------------------------
      Retrieve a list of the regions for this table so that you can efficiently split up the work (a la MapReduce).
      
      Options: 
-         start_row, end_row: Only return the list of regions that contain the range start_row...end_row
+         start_row, stop_row: Only return the list of regions that contain the range start_row...stop_row
      Returns: 
          XML entity body that describes the regions:
  
@@ -198, +198 @@

      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.
          
-         start_row, end_row: Starting and ending keys that enclose the region that should be scanned.
+         start_row, stop_row: Starting and ending keys that enclose the region that should be scanned.
          
          timestamp: Timestamp at which to start the scanner.
  
  
      Returns:
          HTTP 201 (Created) with a Location header that references the scanner URI. Example:
-         /first_table/scanner?timestamp=1234348890231890&column=colfam1:name&start_row=first_key&end_row=last_key
+         /first_table/scanner?timestamp=1234348890231890&column=colfam1:name&start_row=first_key&stop_row=last_key
  
- ~-''St.Ack comment 11/18/2007: I added timestamp parameter. Should start_row, end_row, OR timestamp be on the URL path to sync. with how they are specified GET'ing, etc?-~
+ ~-''St.Ack comment 11/18/2007: I added timestamp parameter. Should start_row, stop_row, OR timestamp be on the URL path to sync. with how they are specified GET'ing, etc?-~
  
              
  '''POST /[table_name]/scanner/[scanner_id]'''