Uses of Class
org.apache.hadoop.hbase.client.Result

Packages that use Result
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.client.transactional This package provides support for atomic transactions. 
org.apache.hadoop.hbase.ipc Tools to help define network clients and servers. 
org.apache.hadoop.hbase.mapreduce 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.rest Provides an HBase REST service. 
org.apache.hadoop.hbase.stargate.client   
org.apache.hadoop.hbase.thrift Provides an HBase Thrift service. 
 

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

Methods in org.apache.hadoop.hbase.client that return Result
 Result[] ScannerCallable.call()
           
 Result HTable.get(Get get)
          Extracts certain cells from a given row.
 Result HTable.getRowOrBefore(byte[] row, byte[] family)
          Return the row that matches row exactly, or the one that immediately precedes it.
 Result ResultScanner.next()
          Grab the next row's worth of values.
 Result HTable.ClientScanner.next()
           
 Result[] ResultScanner.next(int nbRows)
           
 Result[] HTable.ClientScanner.next(int nbRows)
          Get nbRows rows.
static Result[] Result.readArray(DataInput in)
           
 

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

Methods in org.apache.hadoop.hbase.client with parameters of type Result
static void Result.writeArray(DataOutput out, Result[] results)
           
 

Uses of Result in org.apache.hadoop.hbase.client.transactional
 

Methods in org.apache.hadoop.hbase.client.transactional that return Result
 Result TransactionalTable.get(TransactionState transactionState, Get get)
          Method for getting data from a row
 

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

Methods in org.apache.hadoop.hbase.ipc that return Result
 Result HRegionInterface.get(byte[] regionName, Get get)
          Perform Get operation.
 Result TransactionalRegionInterface.get(long transactionId, byte[] regionName, Get get)
          Perform a transactional Get operation.
 Result HRegionInterface.getClosestRowBefore(byte[] regionName, byte[] row, byte[] family)
          Return all the data for the row that matches row exactly, or the one that immediately preceeds it.
 Result HRegionInterface.next(long scannerId)
          Get the next set of values
 Result[] HRegionInterface.next(long scannerId, int numberOfRows)
          Get the next set of values
 

Uses of Result in org.apache.hadoop.hbase.mapreduce
 

Methods in org.apache.hadoop.hbase.mapreduce that return Result
 Result TableInputFormatBase.TableRecordReader.getCurrentValue()
          Returns the current value.
 

Methods in org.apache.hadoop.hbase.mapreduce that return types with arguments of type Result
 org.apache.hadoop.mapreduce.RecordReader<ImmutableBytesWritable,Result> TableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split, org.apache.hadoop.mapreduce.TaskAttemptContext context)
          Builds a TableRecordReader.
 

Methods in org.apache.hadoop.hbase.mapreduce with parameters of type Result
protected  byte[][] GroupingTableMapper.extractKeyValues(Result r)
          Extract columns values from the current record.
 void IdentityTableMapper.map(ImmutableBytesWritable key, Result value, org.apache.hadoop.mapreduce.Mapper.Context context)
          Pass the key, value to reduce.
 void GroupingTableMapper.map(ImmutableBytesWritable key, Result value, org.apache.hadoop.mapreduce.Mapper.Context context)
          Extract the grouping columns from value to construct a new key.
 

Method parameters in org.apache.hadoop.hbase.mapreduce with type arguments of type Result
 void IndexTableReducer.reduce(ImmutableBytesWritable key, Iterable<Result> values, org.apache.hadoop.mapreduce.Reducer.Context context)
          Writes each given record, consisting of the key and the given values, to the index.
 

Uses of Result in org.apache.hadoop.hbase.master
 

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

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

Methods in org.apache.hadoop.hbase.regionserver that return Result
 Result HRegionServer.get(byte[] regionName, Get get)
          Perform Get operation.
 Result HRegion.get(Get get, Integer ignoredLockId)
           
 Result HRegion.getClosestRowBefore(byte[] row, byte[] family)
          Return all the data for the row that matches row exactly, or the one that immediately preceeds it, at or immediately before ts.
 Result HRegionServer.getClosestRowBefore(byte[] regionName, byte[] row, byte[] family)
           
 Result HRegionServer.next(long scannerId)
           
 Result[] HRegionServer.next(long scannerId, int nbRows)
           
 

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

Methods in org.apache.hadoop.hbase.regionserver.transactional that return Result
 Result TransactionalRegionServer.get(long transactionId, byte[] regionName, Get get)
           
 Result TransactionalRegion.get(long transactionId, Get get)
           
 

Uses of Result in org.apache.hadoop.hbase.rest
 

Methods in org.apache.hadoop.hbase.rest that return Result
 Result[] TableModel.get(byte[] tableName)
           
 Result[] TableModel.get(byte[] tableName, byte[][] columnNames)
          Returns all cells from all rows from the given table in the given columns.
 Result TimestampModel.get(byte[] tableName, Get get)
           
 Result RowModel.get(byte[] tableName, Get get)
           
 Result[] ScannerModel.scannerGet(Integer id)
          Returns all rows inbetween the scanners current position and the end of the table.
 Result[] ScannerModel.scannerGet(Integer id, Long numRows)
          returns the next numResults Results from the Scaner mapped to Integer id.
 

Uses of Result in org.apache.hadoop.hbase.stargate.client
 

Methods in org.apache.hadoop.hbase.stargate.client that return Result
protected  Result[] RemoteHTable.buildResultFromModel(CellSetModel model)
           
 Result RemoteHTable.get(Get get)
           
 Result RemoteHTable.getRowOrBefore(byte[] row, byte[] family)
           
 

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

Methods in org.apache.hadoop.hbase.thrift with parameters of type Result
static List<org.apache.hadoop.hbase.thrift.generated.TRowResult> ThriftUtilities.rowResultFromHBase(Result in)
           
static List<org.apache.hadoop.hbase.thrift.generated.TRowResult> ThriftUtilities.rowResultFromHBase(Result[] in)
          This utility method creates a list of Thrift TRowResult "struct" based on an Hbase RowResult object.
 



Copyright © 2010 The Apache Software Foundation