|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Result | |
---|---|
org.apache.hadoop.hbase | |
org.apache.hadoop.hbase.catalog | |
org.apache.hadoop.hbase.client | Provides HBase Client |
org.apache.hadoop.hbase.coprocessor | Table of Contents |
org.apache.hadoop.hbase.mapred | Provides HBase MapReduce Input/OutputFormats, a table indexing MapReduce job, and utility |
org.apache.hadoop.hbase.mapreduce | Provides HBase MapReduce Input/OutputFormats, a table indexing MapReduce job, and utility |
org.apache.hadoop.hbase.mapreduce.replication | |
org.apache.hadoop.hbase.protobuf | Holds classes generated from protobuf
src/main/protobuf definition files. |
org.apache.hadoop.hbase.regionserver | |
org.apache.hadoop.hbase.rest.client | |
org.apache.hadoop.hbase.security.access | |
org.apache.hadoop.hbase.security.visibility | |
org.apache.hadoop.hbase.thrift | Provides an HBase Thrift service. |
org.apache.hadoop.hbase.thrift2 | Provides an HBase Thrift service. |
Uses of Result in org.apache.hadoop.hbase |
---|
Methods in org.apache.hadoop.hbase with parameters of type Result | |
---|---|
static PairOfSameType<HRegionInfo> |
HRegionInfo.getDaughterRegions(Result data)
Returns the daughter regions by reading the corresponding columns of the catalog table Result. |
static HRegionInfo |
HRegionInfo.getHRegionInfo(Result data)
Returns HRegionInfo object from the column HConstants.CATALOG_FAMILY:HConstants.REGIONINFO_QUALIFIER of the catalog table Result. |
static HRegionInfo |
HRegionInfo.getHRegionInfo(Result r,
byte[] qualifier)
Returns the HRegionInfo object from the column HConstants.CATALOG_FAMILY and
qualifier of the catalog table result. |
static Pair<HRegionInfo,ServerName> |
HRegionInfo.getHRegionInfoAndServerName(Result r)
Extract a HRegionInfo and ServerName from catalog table Result . |
static PairOfSameType<HRegionInfo> |
HRegionInfo.getMergeRegions(Result data)
Returns the merge regions by reading the corresponding columns of the catalog table Result. |
static long |
HRegionInfo.getSeqNumDuringOpen(Result r)
The latest seqnum that the server writing to meta observed when opening the region. |
static ServerName |
HRegionInfo.getServerName(Result r)
Returns a ServerName from catalog table Result . |
Uses of Result in org.apache.hadoop.hbase.catalog |
---|
Methods in org.apache.hadoop.hbase.catalog that return Result | |
---|---|
static Result |
MetaReader.getRegionResult(CatalogTracker catalogTracker,
byte[] regionName)
Gets the result in hbase:meta for the specified region. |
Methods in org.apache.hadoop.hbase.catalog that return types with arguments of type Result | |
---|---|
static List<Result> |
MetaReader.fullScan(CatalogTracker catalogTracker)
Performs a full scan of hbase:meta . |
static List<Result> |
MetaReader.fullScanOfMeta(CatalogTracker catalogTracker)
Performs a full scan of a hbase:meta table. |
static NavigableMap<HRegionInfo,Result> |
MetaReader.getServerUserRegions(CatalogTracker catalogTracker,
ServerName serverName)
|
Methods in org.apache.hadoop.hbase.catalog with parameters of type Result | |
---|---|
boolean |
MetaReader.Visitor.visit(Result r)
Visit the catalog table row. |
Uses of Result in org.apache.hadoop.hbase.client |
---|
Fields in org.apache.hadoop.hbase.client declared as Result | |
---|---|
static Result |
Result.EMPTY_RESULT
|
protected Result |
ClientScanner.lastResult
|
Fields in org.apache.hadoop.hbase.client with type parameters of type Result | |
---|---|
protected LinkedList<Result> |
ClientScanner.cache
|
Methods in org.apache.hadoop.hbase.client that return Result | |
---|---|
Result |
HTable.append(Append append)
Appends values to one or more columns within a single row. |
Result |
HTableInterface.append(Append append)
Appends values to one or more columns within a single row. |
Result[] |
ScannerCallable.call()
|
static Result |
Result.create(Cell[] cells)
Instantiate a Result with the specified array of KeyValues. |
static Result |
Result.create(List<Cell> cells)
Instantiate a Result with the specified List of KeyValues. |
static Result |
Result.create(List<Cell> cells,
Boolean exists)
|
Result |
HTable.get(Get get)
Extracts certain cells from a given row. |
Result |
HTableInterface.get(Get get)
Extracts certain cells from a given row. |
Result[] |
HTable.get(List<Get> gets)
Extracts certain cells from the given rows, in batch. |
Result[] |
HTableInterface.get(List<Get> gets)
Extracts certain cells from the given rows, in batch. |
Result |
HTable.getRowOrBefore(byte[] row,
byte[] family)
Return the row that matches row exactly, or the one that immediately precedes it. |
Result |
HTableInterface.getRowOrBefore(byte[] row,
byte[] family)
Deprecated. As of version 0.92 this method is deprecated without replacement. getRowOrBefore is used internally to find entries in hbase:meta and makes various assumptions about the table (which are true for hbase:meta but not in general) to be efficient. |
Result |
HTable.increment(Increment increment)
Increments one or more columns within a single row. |
Result |
HTableInterface.increment(Increment increment)
Increments one or more columns within a single row. |
Result |
TableSnapshotScanner.next()
|
Result |
ClientSideRegionScanner.next()
|
Result |
ClientSmallReversedScanner.next()
|
Result |
ClientSmallScanner.next()
|
Result |
ClientScanner.next()
|
Result |
ResultScanner.next()
Grab the next row's worth of values. |
Result[] |
AbstractClientScanner.next(int nbRows)
Get nbRows rows. |
Result[] |
ResultScanner.next(int nbRows)
|
Methods in org.apache.hadoop.hbase.client that return types with arguments of type Result | |
---|---|
Iterator<Result> |
AbstractClientScanner.iterator()
|
Methods in org.apache.hadoop.hbase.client with parameters of type Result | |
---|---|
static void |
Result.compareResults(Result res1,
Result res2)
Does a deep comparison of two Results, down to the byte arrays. |
void |
Result.copyFrom(Result other)
Copy another Result into this one. |
static HRegionInfo |
MetaScanner.getHRegionInfo(Result data)
Returns HRegionInfo object from the column HConstants.CATALOG_FAMILY:HConstants.REGIONINFO_QUALIFIER of the catalog table Result. |
boolean |
MetaScanner.MetaScannerVisitor.processRow(Result rowResult)
Visitor method that accepts a RowResult and the meta region location. |
boolean |
MetaScanner.DefaultMetaScannerVisitor.processRow(Result rowResult)
|
boolean |
MetaScanner.TableMetaScannerVisitor.processRow(Result rowResult)
|
abstract boolean |
MetaScanner.DefaultMetaScannerVisitor.processRowInternal(Result rowResult)
|
protected void |
ScannerCallable.updateResultsMetrics(Result[] rrs)
|
Uses of Result in org.apache.hadoop.hbase.coprocessor |
---|
Methods in org.apache.hadoop.hbase.coprocessor with parameters of type Result | |
---|---|
Result |
BaseRegionObserver.postAppend(ObserverContext<RegionCoprocessorEnvironment> e,
Append append,
Result result)
|
Result |
RegionObserver.postAppend(ObserverContext<RegionCoprocessorEnvironment> c,
Append append,
Result result)
Called after Append |
void |
BaseRegionObserver.postGetClosestRowBefore(ObserverContext<RegionCoprocessorEnvironment> e,
byte[] row,
byte[] family,
Result result)
|
void |
RegionObserver.postGetClosestRowBefore(ObserverContext<RegionCoprocessorEnvironment> c,
byte[] row,
byte[] family,
Result result)
Called after a client makes a GetClosestRowBefore request. |
Result |
BaseRegionObserver.postIncrement(ObserverContext<RegionCoprocessorEnvironment> e,
Increment increment,
Result result)
|
Result |
RegionObserver.postIncrement(ObserverContext<RegionCoprocessorEnvironment> c,
Increment increment,
Result result)
Called after increment |
void |
BaseRegionObserver.preGetClosestRowBefore(ObserverContext<RegionCoprocessorEnvironment> e,
byte[] row,
byte[] family,
Result result)
|
void |
RegionObserver.preGetClosestRowBefore(ObserverContext<RegionCoprocessorEnvironment> c,
byte[] row,
byte[] family,
Result result)
Called before a client makes a GetClosestRowBefore request. |
Method parameters in org.apache.hadoop.hbase.coprocessor with type arguments of type Result | |
---|---|
boolean |
BaseRegionObserver.postScannerNext(ObserverContext<RegionCoprocessorEnvironment> e,
InternalScanner s,
List<Result> results,
int limit,
boolean hasMore)
|
boolean |
RegionObserver.postScannerNext(ObserverContext<RegionCoprocessorEnvironment> c,
InternalScanner s,
List<Result> result,
int limit,
boolean hasNext)
Called after the client asks for the next row on a scanner. |
boolean |
BaseRegionObserver.preScannerNext(ObserverContext<RegionCoprocessorEnvironment> e,
InternalScanner s,
List<Result> results,
int limit,
boolean hasMore)
|
boolean |
RegionObserver.preScannerNext(ObserverContext<RegionCoprocessorEnvironment> c,
InternalScanner s,
List<Result> result,
int limit,
boolean hasNext)
Called before the client asks for the next row on a scanner. |
Uses of Result in org.apache.hadoop.hbase.mapred |
---|
Methods in org.apache.hadoop.hbase.mapred that return Result | |
---|---|
Result |
TableRecordReader.createValue()
Deprecated. |
Result |
TableRecordReaderImpl.createValue()
Deprecated. |
Methods in org.apache.hadoop.hbase.mapred that return types with arguments of type Result | |
---|---|
org.apache.hadoop.mapred.RecordReader<ImmutableBytesWritable,Result> |
MultiTableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,
org.apache.hadoop.mapred.Reporter reporter)
|
org.apache.hadoop.mapred.RecordReader<ImmutableBytesWritable,Result> |
TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,
org.apache.hadoop.mapred.Reporter reporter)
|
org.apache.hadoop.mapred.RecordReader<ImmutableBytesWritable,Result> |
TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,
org.apache.hadoop.mapred.Reporter reporter)
Deprecated. Builds a TableRecordReader. |
Methods in org.apache.hadoop.hbase.mapred with parameters of type Result | |
---|---|
protected byte[][] |
GroupingTableMap.extractKeyValues(Result r)
Deprecated. Extract columns values from the current record. |
void |
GroupingTableMap.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,Result> output,
org.apache.hadoop.mapred.Reporter reporter)
Deprecated. Extract the grouping columns from value to construct a new key. |
void |
IdentityTableMap.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,Result> output,
org.apache.hadoop.mapred.Reporter reporter)
Deprecated. Pass the key, value to reduce |
boolean |
TableRecordReader.next(ImmutableBytesWritable key,
Result value)
Deprecated. |
boolean |
TableRecordReaderImpl.next(ImmutableBytesWritable key,
Result value)
Deprecated. |
Method parameters in org.apache.hadoop.hbase.mapred with type arguments of type Result | |
---|---|
void |
GroupingTableMap.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,Result> output,
org.apache.hadoop.mapred.Reporter reporter)
Deprecated. Extract the grouping columns from value to construct a new key. |
void |
IdentityTableMap.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapred.OutputCollector<ImmutableBytesWritable,Result> output,
org.apache.hadoop.mapred.Reporter reporter)
Deprecated. Pass the key, value to reduce |
Uses of Result in org.apache.hadoop.hbase.mapreduce |
---|
Methods in org.apache.hadoop.hbase.mapreduce that return Result | |
---|---|
Result |
TableRecordReader.getCurrentValue()
Returns the current value. |
Result |
TableSnapshotInputFormatImpl.RecordReader.getCurrentValue()
|
Result |
TableRecordReaderImpl.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> |
TableSnapshotInputFormat.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split,
org.apache.hadoop.mapreduce.TaskAttemptContext context)
|
|
org.apache.hadoop.mapreduce.RecordReader<ImmutableBytesWritable,Result> |
MultiTableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split,
org.apache.hadoop.mapreduce.TaskAttemptContext context)
Builds a TableRecordReader. |
|
org.apache.hadoop.mapreduce.RecordReader<ImmutableBytesWritable,Result> |
TableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split,
org.apache.hadoop.mapreduce.TaskAttemptContext context)
Builds a TableRecordReader. |
|
org.apache.hadoop.io.serializer.Deserializer<Result> |
ResultSerialization.getDeserializer(Class<Result> c)
|
|
static
|
MultithreadedTableMapper.getMapperClass(org.apache.hadoop.mapreduce.JobContext job)
Get the application's mapper class. |
|
org.apache.hadoop.io.serializer.Serializer<Result> |
ResultSerialization.getSerializer(Class<Result> c)
|
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. |
protected void |
HashTable.HashMapper.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapreduce.Mapper.Context context)
|
void |
Import.KeyValueImporter.map(ImmutableBytesWritable row,
Result value,
org.apache.hadoop.mapreduce.Mapper.Context context)
|
protected void |
SyncTable.SyncMapper.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapreduce.Mapper.Context context)
|
void |
Import.Importer.map(ImmutableBytesWritable row,
Result value,
org.apache.hadoop.mapreduce.Mapper.Context context)
|
protected void |
IndexBuilder.Map.map(ImmutableBytesWritable rowKey,
Result result,
org.apache.hadoop.mapreduce.Mapper.Context context)
|
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. |
void |
Import.KeyValueSortImporter.map(ImmutableBytesWritable row,
Result value,
org.apache.hadoop.mapreduce.Mapper.Context context)
|
protected void |
Import.Importer.processKV(ImmutableBytesWritable key,
Result result,
org.apache.hadoop.mapreduce.Mapper.Context context,
Put put,
Delete delete)
|
Method parameters in org.apache.hadoop.hbase.mapreduce with type arguments of type Result | ||
---|---|---|
org.apache.hadoop.io.serializer.Deserializer<Result> |
ResultSerialization.getDeserializer(Class<Result> c)
|
|
org.apache.hadoop.io.serializer.Serializer<Result> |
ResultSerialization.getSerializer(Class<Result> c)
|
|
static
|
MultithreadedTableMapper.setMapperClass(org.apache.hadoop.mapreduce.Job job,
Class<? extends org.apache.hadoop.mapreduce.Mapper<ImmutableBytesWritable,Result,K2,V2>> cls)
Set the application's mapper class. |
Uses of Result in org.apache.hadoop.hbase.mapreduce.replication |
---|
Methods in org.apache.hadoop.hbase.mapreduce.replication with parameters of type Result | |
---|---|
void |
VerifyReplication.Verifier.map(ImmutableBytesWritable row,
Result value,
org.apache.hadoop.mapreduce.Mapper.Context context)
Map method that compares every scanned row with the equivalent from a distant cluster. |
Uses of Result in org.apache.hadoop.hbase.protobuf |
---|
Methods in org.apache.hadoop.hbase.protobuf that return Result | |
---|---|
static Result |
ProtobufUtil.get(ClientProtos.ClientService.BlockingInterface client,
byte[] regionName,
Get get)
A helper to invoke a Get using client protocol. |
static Result |
ProtobufUtil.get(ClientProtos.ClientService.BlockingInterface client,
byte[] regionName,
Get get,
PayloadCarryingRpcController controller)
A helper to invoke a Get using client protocol. |
static Result[] |
ResponseConverter.getResults(CellScanner cellScanner,
ClientProtos.ScanResponse response)
Create Results from the cells using the cells meta data. |
static Result |
ProtobufUtil.getRowOrBefore(ClientProtos.ClientService.BlockingInterface client,
byte[] regionName,
byte[] row,
byte[] family)
A helper to get a row of the closet one before using client protocol without setting any special (i.e. |
static Result |
ProtobufUtil.getRowOrBefore(ClientProtos.ClientService.BlockingInterface client,
byte[] regionName,
byte[] row,
byte[] family,
PayloadCarryingRpcController payloadCarryingRpcController)
A helper to get a row of the closet one before using client protocol. |
static Result |
ProtobufUtil.toResult(ClientProtos.Result proto)
Convert a protocol buffer Result to a client Result |
static Result |
ProtobufUtil.toResult(ClientProtos.Result proto,
CellScanner scanner)
Convert a protocol buffer Result to a client Result |
Methods in org.apache.hadoop.hbase.protobuf with parameters of type Result | |
---|---|
static ClientProtos.Result |
ProtobufUtil.toResult(Result result)
Convert a client Result to a protocol buffer Result |
static ClientProtos.Result |
ProtobufUtil.toResultNoData(Result result)
Convert a client Result to a protocol buffer Result. |
Uses of Result in org.apache.hadoop.hbase.regionserver |
---|
Methods in org.apache.hadoop.hbase.regionserver that return Result | |
---|---|
Result |
HRegion.append(Append append)
|
Result |
HRegion.append(Append append,
long nonceGroup,
long nonce)
Perform one or more append operations on a row. |
protected Result |
HRegionServer.append(HRegion region,
ClientProtos.MutationProto m,
CellScanner cellScanner,
long nonceGroup)
Execute an append mutation. |
Result |
HRegion.get(Get get)
|
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. |
protected Result |
HRegionServer.increment(HRegion region,
ClientProtos.MutationProto mutation,
CellScanner cells,
long nonceGroup)
Execute an increment mutation. |
Result |
HRegion.increment(Increment increment)
|
Result |
HRegion.increment(Increment increment,
long nonceGroup,
long nonce)
Perform one or more increment operations on a row. |
Result |
RegionCoprocessorHost.postIncrement(Increment increment,
Result result)
|
Result |
RegionCoprocessorHost.preAppend(Append append)
|
Result |
RegionCoprocessorHost.preAppendAfterRowLock(Append append)
|
Result |
RegionCoprocessorHost.preIncrement(Increment increment)
|
Result |
RegionCoprocessorHost.preIncrementAfterRowLock(Increment increment)
|
Methods in org.apache.hadoop.hbase.regionserver with parameters of type Result | |
---|---|
void |
RegionCoprocessorHost.postAppend(Append append,
Result result)
|
void |
RegionCoprocessorHost.postGetClosestRowBefore(byte[] row,
byte[] family,
Result result)
|
Result |
RegionCoprocessorHost.postIncrement(Increment increment,
Result result)
|
boolean |
RegionCoprocessorHost.preGetClosestRowBefore(byte[] row,
byte[] family,
Result result)
|
Method parameters in org.apache.hadoop.hbase.regionserver with type arguments of type Result | |
---|---|
boolean |
RegionCoprocessorHost.postScannerNext(InternalScanner s,
List<Result> results,
int limit,
boolean hasMore)
|
Boolean |
RegionCoprocessorHost.preScannerNext(InternalScanner s,
List<Result> results,
int limit)
|
Uses of Result in org.apache.hadoop.hbase.rest.client |
---|
Methods in org.apache.hadoop.hbase.rest.client that return Result | |
---|---|
Result |
RemoteHTable.append(Append append)
|
protected Result[] |
RemoteHTable.buildResultFromModel(CellSetModel model)
|
Result |
RemoteHTable.get(Get get)
|
Result[] |
RemoteHTable.get(List<Get> gets)
|
Result |
RemoteHTable.getRowOrBefore(byte[] row,
byte[] family)
|
Result |
RemoteHTable.increment(Increment increment)
|
Uses of Result in org.apache.hadoop.hbase.security.access |
---|
Methods in org.apache.hadoop.hbase.security.access that return Result | |
---|---|
Result |
AccessController.preAppend(ObserverContext<RegionCoprocessorEnvironment> c,
Append append)
|
Result |
AccessController.preAppendAfterRowLock(ObserverContext<RegionCoprocessorEnvironment> c,
Append append)
|
Result |
AccessController.preIncrement(ObserverContext<RegionCoprocessorEnvironment> c,
Increment increment)
|
Result |
AccessController.preIncrementAfterRowLock(ObserverContext<RegionCoprocessorEnvironment> c,
Increment increment)
|
Methods in org.apache.hadoop.hbase.security.access with parameters of type Result | |
---|---|
void |
AccessController.preGetClosestRowBefore(ObserverContext<RegionCoprocessorEnvironment> c,
byte[] row,
byte[] family,
Result result)
|
Method parameters in org.apache.hadoop.hbase.security.access with type arguments of type Result | |
---|---|
boolean |
AccessController.preScannerNext(ObserverContext<RegionCoprocessorEnvironment> c,
InternalScanner s,
List<Result> result,
int limit,
boolean hasNext)
|
Uses of Result in org.apache.hadoop.hbase.security.visibility |
---|
Methods in org.apache.hadoop.hbase.security.visibility that return Result | |
---|---|
Result |
VisibilityController.preAppend(ObserverContext<RegionCoprocessorEnvironment> e,
Append append)
|
Result |
VisibilityController.preIncrement(ObserverContext<RegionCoprocessorEnvironment> e,
Increment increment)
|
Method parameters in org.apache.hadoop.hbase.security.visibility with type arguments of type Result | |
---|---|
boolean |
VisibilityController.preScannerNext(ObserverContext<RegionCoprocessorEnvironment> c,
InternalScanner s,
List<Result> result,
int limit,
boolean hasNext)
|
Uses of Result in org.apache.hadoop.hbase.thrift |
---|
Methods in org.apache.hadoop.hbase.thrift with parameters of type Result | |
---|---|
static List<TRowResult> |
ThriftUtilities.rowResultFromHBase(Result in)
|
static List<TRowResult> |
ThriftUtilities.rowResultFromHBase(Result[] in)
This utility method creates a list of Thrift TRowResult "struct" based on an array of Hbase RowResult objects. |
static List<TRowResult> |
ThriftUtilities.rowResultFromHBase(Result[] in,
boolean sortColumns)
This utility method creates a list of Thrift TRowResult "struct" based on an Hbase RowResult object. |
Uses of Result in org.apache.hadoop.hbase.thrift2 |
---|
Methods in org.apache.hadoop.hbase.thrift2 with parameters of type Result | |
---|---|
static TResult |
ThriftUtilities.resultFromHBase(Result in)
Creates a TResult (Thrift) from a Result (HBase). |
static List<TResult> |
ThriftUtilities.resultsFromHBase(Result[] in)
Converts multiple Result s (HBase) into a list of TResult s (Thrift). |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |