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

Packages that use RowResult
org.apache.hadoop.hbase.client   
org.apache.hadoop.hbase.client.transactional This package provides support for atomic transactions. 
org.apache.hadoop.hbase.io   
org.apache.hadoop.hbase.ipc Tools to help define network clients and servers. 
org.apache.hadoop.hbase.mapred Provides HBase MapReduce Input/OutputFormats, a table indexing MapReduce job, and utility 
org.apache.hadoop.hbase.master   
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.regionserver.transactional   
org.apache.hadoop.hbase.thrift Provides an HBase Thrift service. 
 

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

Methods in org.apache.hadoop.hbase.client that return RowResult
 RowResult[] ScannerCallable.call()
           
 RowResult HTable.getClosestRowBefore(byte[] row, byte[] columnFamily)
           
 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, int numVersions)
          Get more than one version of selected columns for the specified row
 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, byte[][] columns, long ts, int numVersions, RowLock rl)
          Get selected columns for the specified row at a specified timestamp using existing row lock.
 RowResult HTable.getRow(byte[] row, int numVersions)
          Get more than one version of all columns for the specified row
 RowResult HTable.getRow(byte[] row, long ts)
          Get all the data for the specified row at a specified timestamp
 RowResult HTable.getRow(byte[] row, long timestamp, int numVersions)
          Get more than one version of all columns 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, int numVersions)
          Get more than one version of all columns for the specified row
 RowResult HTable.getRow(String row, long ts)
          Get all the data for the specified row at a specified timestamp
 RowResult HTable.getRow(String row, long ts, int numVersions)
           
 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, int numVersions)
          Get more than one version of selected columns for the specified row
 RowResult HTable.getRow(String row, String[] columns, long ts)
          Get selected columns for the specified row at a specified timestamp
 RowResult HTable.getRow(String row, String[] columns, long timestamp, int numVersions, RowLock rowLock)
           
 RowResult Scanner.next()
          Grab the next row's worth of values.
 RowResult HTable.ClientScanner.next()
           
 RowResult[] Scanner.next(int nbRows)
           
 RowResult[] HTable.ClientScanner.next(int nbRows)
           
 

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.client.transactional
 

Methods in org.apache.hadoop.hbase.client.transactional that return RowResult
 RowResult TransactionalTable.getRow(TransactionState transactionState, byte[] row)
          Get all the data for the specified row at the latest timestamp
 RowResult TransactionalTable.getRow(TransactionState transactionState, byte[] row, byte[][] columns)
          Get selected columns for the specified row at the latest timestamp
 RowResult TransactionalTable.getRow(TransactionState transactionState, byte[] row, byte[][] columns, long ts)
          Get selected columns for the specified row at a specified timestamp
 RowResult TransactionalTable.getRow(TransactionState transactionState, byte[] row, long ts)
          Get all the data for the specified row at a specified timestamp
 

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

Constructors in org.apache.hadoop.hbase.io with parameters of type RowResult
BatchUpdate(RowResult rr)
          Create a batch operation.
 

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, byte[] columnFamily)
          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, long ts, int numVersions, long lockId)
          Get selected columns for the specified row at a given timestamp.
 RowResult TransactionalRegionInterface.getRow(long transactionId, byte[] regionName, byte[] row, byte[][] columns)
          Get selected columns for the specified row at the latest timestamp.
 RowResult TransactionalRegionInterface.getRow(long transactionId, byte[] regionName, byte[] row, byte[][] columns, long ts)
          Get selected columns for the specified row at a given timestamp.
 RowResult TransactionalRegionInterface.getRow(long transactionId, 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
 RowResult[] HRegionInterface.next(long scannerId, int numberOfRows)
          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.
 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.master
 

Methods in org.apache.hadoop.hbase.master that return RowResult
protected  RowResult HMaster.getFromMETA(byte[] row, byte[][] columns)
          Get row from meta table.
 

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

Methods in org.apache.hadoop.hbase.regionserver that return RowResult
 RowResult HRegion.getClosestRowBefore(byte[] row, byte[] columnFamily)
          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, byte[] columnFamily)
           
 RowResult HRegionServer.getRow(byte[] regionName, byte[] row, byte[][] columns, long ts, int numVersions, long lockId)
           
 RowResult HRegionServer.next(long scannerId)
           
 RowResult[] HRegionServer.next(long scannerId, int nbRows)
           
 

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

Methods in org.apache.hadoop.hbase.regionserver.transactional that return RowResult
 RowResult TransactionalRegionServer.getRow(long transactionId, byte[] regionName, byte[] row, byte[][] columns)
           
 RowResult TransactionalRegionServer.getRow(long transactionId, byte[] regionName, byte[] row, byte[][] columns, long ts)
           
 RowResult TransactionalRegionServer.getRow(long transactionId, byte[] regionName, byte[] row, long ts)
           
 

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

Methods in org.apache.hadoop.hbase.thrift with parameters of type RowResult
static TRowResult ThriftUtilities.rowResultFromHBase(RowResult in)
          This utility method creates a new Thrift TRowResult "struct" based on an Hbase RowResult object.
 



Copyright © 2008 The Apache Software Foundation