Package org.apache.hadoop.hbase.client
Class BatchScanResultCache
java.lang.Object
org.apache.hadoop.hbase.client.BatchScanResultCache
- All Implemented Interfaces:
ScanResultCache
A scan result cache for batched scan, i.e,
scan.getBatch() > 0 && !scan.getAllowPartialResults().
If user setBatch(5) and rpc returns 3+5+5+5+3 cells, we should return 5+5+5+5+1 to user. setBatch doesn't mean setAllowPartialResult(true).
- Since:
- 2.0.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intprivate ExtendedCellprivate booleanprivate intprivate intFields inherited from interface org.apache.hadoop.hbase.client.ScanResultCache
EMPTY_RESULT_ARRAY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionResult[]Add the given results to cache and get valid results back.voidclear()Clear the cached result if any.private ResultintReturn the number of complete rows.private voidrecordLastResult(Result result) private ResultregroupResults(Result result)
-
Field Details
-
batch
-
lastCell
-
lastResultPartial
-
partialResults
-
numCellsOfPartialResults
-
numberOfCompleteRows
-
-
Constructor Details
-
BatchScanResultCache
-
-
Method Details
-
recordLastResult
-
createCompletedResult
- Throws:
IOException
-
regroupResults
-
addAndGet
Description copied from interface:ScanResultCacheAdd the given results to cache and get valid results back.- Specified by:
addAndGetin interfaceScanResultCache- Parameters:
results- the results of a scan next. Must not be null.isHeartbeatMessage- indicate whether the results is gotten from a heartbeat response.- Returns:
- valid results, never null.
- Throws:
IOException
-
clear
Description copied from interface:ScanResultCacheClear the cached result if any. Called when scan error and we will start from a start of a row again.- Specified by:
clearin interfaceScanResultCache
-
numberOfCompleteRows
Description copied from interface:ScanResultCacheReturn the number of complete rows. Used to implement limited scan.- Specified by:
numberOfCompleteRowsin interfaceScanResultCache
-