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 ------------------------------------------------------------------------------ === Meta-info methods === + ==== Get Table Names ==== + Returns a list of table names. + + ==== Get Column Descriptors ==== + Return a list of column descriptors for a given table. + + ==== Get Table Regions ==== + Return a list of the region and host tuples that make up a table. + === Row methods === + + ==== Get Row ==== + Retrieve a map<col name, byte[]> for a given row, with all the usual options. (timestamp, selected columns) + + ==== Mutate Row (Put) ==== + Send a series of mutation commands (put, delete) to the table. + + ==== Delete Row ==== + Delete an entire row. === Scanner methods === + ==== Open Scanner ==== + Create a scanner for a table with some options. + + ==== Get Scanner Results ==== + Retrieve one or more records from the scanner at once. + + ==== Close Scanner ==== + Close a scanner. +