Uses of Class
org.apache.hadoop.hbase.io.RowResult

Packages that use RowResult
org.apache.hadoop.hbase.client   
org.apache.hadoop.hbase.ipc   
org.apache.hadoop.hbase.mapred Provides HBase MapReduce Input/OutputFormats, a table indexing MapReduce job, and utility 
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.util.migration.v5 Package of classes used instantiating objects written with pre-version 5 versions of HBase. 
 

Uses of RowResult in org.apache.hadoop.hbase.client
 

Methods in org.apache.hadoop.hbase.client that return RowResult
 RowResult ScannerCallable.call()
          
 RowResult HTable.getRow(byte[] row)
          Get all the data for the specified row at the latest timestamp
 RowResult HTable.getRow(byte[] row, byte[][] columns)
          Get selected columns for the specified row at the latest timestamp
 RowResult HTable.getRow(byte[] row, byte[][] columns, long ts)
          Get selected columns for the specified row at a specified timestamp
 RowResult HTable.getRow(byte[] row, long ts)
          Get all the data for the specified row at a specified timestamp
 RowResult HTable.getRow(String row)
          Get all the data for the specified row at the latest timestamp
 RowResult HTable.getRow(String row, long ts)
          Get all the data for the specified row at a specified timestamp
 RowResult HTable.getRow(String row, String[] columns)
          Get selected columns for the specified row at the latest timestamp
 RowResult HTable.getRow(String row, String[] columns, long ts)
          Get selected columns for the specified row at a specified timestamp
 RowResult HTable.getRow(org.apache.hadoop.io.Text row)
          Deprecated. Use String or byte [] overload instead
 RowResult HTable.getRow(org.apache.hadoop.io.Text row, long ts)
          Deprecated. Use String or byte [] overload instead
 RowResult HTable.getRow(org.apache.hadoop.io.Text row, org.apache.hadoop.io.Text[] columns)
          Deprecated. Use String or byte [] overload instead
 RowResult HTable.getRow(org.apache.hadoop.io.Text row, org.apache.hadoop.io.Text[] columns, long ts)
          Deprecated. Use String or byte [] overload instead
 RowResult Scanner.next()
          Grab the next row's worth of values.
 RowResult HTable.ClientScanner.next()
          Grab the next row's worth of values.
 

Methods in org.apache.hadoop.hbase.client that return types with arguments of type RowResult
 Iterator<RowResult> HTable.ClientScanner.iterator()
          
 

Uses of RowResult in org.apache.hadoop.hbase.ipc
 

Methods in org.apache.hadoop.hbase.ipc that return RowResult
 RowResult HRegionInterface.getClosestRowBefore(byte[] regionName, byte[] row)
          Return all the data for the row that matches row exactly, or the one that immediately preceeds it.
 RowResult HRegionInterface.getRow(byte[] regionName, byte[] row, byte[][] columns)
          Get selected columns for the specified row at the latest timestamp.
 RowResult HRegionInterface.getRow(byte[] regionName, byte[] row, byte[][] columns, long ts)
          Get selected columns for the specified row at a given timestamp.
 RowResult HRegionInterface.getRow(byte[] regionName, byte[] row, long ts)
          Get all the data for the specified row at a given timestamp
 RowResult HRegionInterface.next(long scannerId)
          Get the next set of values
 

Uses of RowResult in org.apache.hadoop.hbase.mapred
 

Methods in org.apache.hadoop.hbase.mapred that return RowResult
 RowResult TableInputFormatBase.TableRecordReader.createValue()
           
 

Methods in org.apache.hadoop.hbase.mapred that return types with arguments of type RowResult
 org.apache.hadoop.mapred.RecordReader<ImmutableBytesWritable,RowResult> TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplit split, org.apache.hadoop.mapred.JobConf job, org.apache.hadoop.mapred.Reporter reporter)
          Builds a TableRecordReader.
 

Methods in org.apache.hadoop.hbase.mapred with parameters of type RowResult
protected  byte[][] GroupingTableMap.extractKeyValues(RowResult r)
          Extract columns values from the current record.
 void RowCounter.map(ImmutableBytesWritable row, RowResult value, org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,RowResult> output, org.apache.hadoop.mapred.Reporter reporter)
           
 void IdentityTableMap.map(ImmutableBytesWritable key, RowResult value, org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,RowResult> output, org.apache.hadoop.mapred.Reporter reporter)
          Pass the key, value to reduce
 void GroupingTableMap.map(ImmutableBytesWritable key, RowResult value, org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,RowResult> output, org.apache.hadoop.mapred.Reporter reporter)
          Extract the grouping columns from value to construct a new key.
abstract  void TableMap.map(ImmutableBytesWritable key, RowResult value, org.apache.hadoop.mapred.OutputCollector<K,V> output, org.apache.hadoop.mapred.Reporter reporter)
          Call a user defined function on a single HBase record, represented by a key and its associated record value.
 boolean TableInputFormatBase.TableRecordReader.next(ImmutableBytesWritable key, RowResult value)
           
 

Method parameters in org.apache.hadoop.hbase.mapred with type arguments of type RowResult
 void RowCounter.map(ImmutableBytesWritable row, RowResult value, org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,RowResult> output, org.apache.hadoop.mapred.Reporter reporter)
           
 void IdentityTableMap.map(ImmutableBytesWritable key, RowResult value, org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,RowResult> output, org.apache.hadoop.mapred.Reporter reporter)
          Pass the key, value to reduce
 void GroupingTableMap.map(ImmutableBytesWritable key, RowResult value, org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,RowResult> output, org.apache.hadoop.mapred.Reporter reporter)
          Extract the grouping columns from value to construct a new key.
 void IndexTableReduce.reduce(ImmutableBytesWritable key, Iterator<RowResult> values, org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,org.apache.hadoop.hbase.mapred.LuceneDocumentWrapper> output, org.apache.hadoop.mapred.Reporter reporter)
           
 

Uses of RowResult in org.apache.hadoop.hbase.regionserver
 

Methods in org.apache.hadoop.hbase.regionserver that return RowResult
 RowResult HRegion.getClosestRowBefore(byte[] row)
          Return all the data for the row that matches row exactly, or the one that immediately preceeds it, at or immediately before ts.
 RowResult HRegionServer.getClosestRowBefore(byte[] regionName, byte[] row)
          Return all the data for the row that matches row exactly, or the one that immediately preceeds it.
 RowResult HRegionServer.getRow(byte[] regionName, byte[] row, byte[][] columns)
          Get selected columns for the specified row at the latest timestamp.
 RowResult HRegionServer.getRow(byte[] regionName, byte[] row, byte[][] columns, long ts)
          Get selected columns for the specified row at a given timestamp.
 RowResult HRegionServer.getRow(byte[] regionName, byte[] row, long ts)
          Get all the data for the specified row at a given timestamp
 RowResult HRegionServer.next(long scannerId)
          Get the next set of values
 

Uses of RowResult in org.apache.hadoop.hbase.util.migration.v5
 

Methods in org.apache.hadoop.hbase.util.migration.v5 that return RowResult
 RowResult HRegion.getClosestRowBefore(byte[] row)
          Return all the data for the row that matches row exactly, or the one that immediately preceeds it, at or immediately before ts.
 



Copyright © 2008 The Apache Software Foundation