|
||||||||||
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.protobuf | Holds classes generated from protobuf
src/main/protobuf definition files. |
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 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 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 .META. . |
static List<Result> |
MetaReader.fullScanOfMeta(CatalogTracker catalogTracker)
Performs a full scan of a .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
|
Methods in org.apache.hadoop.hbase.client that return Result | |
---|---|
Result |
HTableInterface.append(Append append)
Appends values to one or more columns within a single row. |
Result |
HTable.append(Append append)
Appends values to one or more columns within a single row. |
Result[] |
ScannerCallable.call()
|
Result |
HTableInterface.get(Get get)
Extracts certain cells from a given row. |
Result |
HTable.get(Get get)
Extracts certain cells from a given row. |
Result[] |
HTableInterface.get(List<Get> gets)
Extracts certain cells from the given rows, in batch. |
Result[] |
HTable.get(List<Get> gets)
Extracts certain cells from the given rows, in batch. |
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 .META. and makes various assumptions about the table (which are true for .META. but not in general) to be efficient. |
Result |
HTable.getRowOrBefore(byte[] row,
byte[] family)
Return the row that matches row exactly, or the one that immediately precedes it. |
Result |
HTableInterface.increment(Increment increment)
Increments one or more columns within a single row. |
Result |
HTable.increment(Increment increment)
Increments one or more columns within a single row. |
Result |
ResultScanner.next()
Grab the next row's worth of values. |
Result |
ClientScanner.next()
|
Result[] |
ResultScanner.next(int nbRows)
|
Result[] |
ClientScanner.next(int nbRows)
Get nbRows rows. |
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)
|
Uses of Result in org.apache.hadoop.hbase.protobuf |
---|
Methods in org.apache.hadoop.hbase.protobuf that return Result | |
---|---|
static Result |
ProtobufUtil.get(ClientProtocol client,
byte[] regionName,
Get get)
A helper to invoke a Get using client protocol. |
static Result[] |
ResponseConverter.getResults(ClientProtos.ScanResponse response)
Get the client Results from a protocol buffer ScanResponse |
static Result |
ProtobufUtil.getRowOrBefore(ClientProtocol client,
byte[] regionName,
byte[] row,
byte[] family)
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |