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 BryanDuxbury: 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_key, end_key: Only return the list of regions that contain the range start_key...end_key + start_row, end_row: Only return the list of regions that contain the range start_row...end_row Returns: XML entity body that describes the regions: @@ -171, +171 @@ columns: A semicolon-delimited list of column names. If omitted, each result will contain all columns in the row. - start_key, end_key: Starting and ending keys that enclose the region that should be scanned. + start_row, end_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_key=first_key&end_key=last_key + /first_table/scanner?timestamp=1234348890231890&column=colfam1:name&start_row=first_key&end_row=last_key - ~-''St.Ack comment 11/18/2007: I added timestamp parameter. Should start_key, end_key, 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, end_row, OR timestamp be on the URL path to sync. with how they are specified GET'ing, etc?-~ '''POST /[table_name]/scanner/[scanner_id]'''
