Class RowIndexSeekerV1
java.lang.Object
org.apache.hadoop.hbase.io.encoding.AbstractDataBlockEncoder.AbstractEncodedSeeker
org.apache.hadoop.hbase.io.encoding.RowIndexSeekerV1
- All Implemented Interfaces:
- DataBlockEncoder.EncodedSeeker
- 
Nested Class SummaryNested Classes
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final CellComparatorprivate RowIndexSeekerV1.SeekerStateprivate ByteBuffprivate RowIndexSeekerV1.SeekerStateprivate intprivate ByteBuffprotected final ObjectIntPair<ByteBuffer>Fields inherited from class org.apache.hadoop.hbase.io.encoding.AbstractDataBlockEncoder.AbstractEncodedSeekerdecodingCtx
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprivate intbinarySearch(Cell seekCell, boolean seekBefore) intcompareKey(CellComparator comparator, Cell key) Compare the given key against the current keyprotected voiddecodeAtPosition(int position) protected voidprotected voidprotected voidgetCell()Returns the Cell at the current position.getKey()From the current position creates a cell using the key part of the current bufferprivate ByteBuffergetRow(int index) Does a shallow copy of the value at the current position.private voidbooleannext()Move to next positionvoidrewind()Set position to beginning of given blockintseekToKeyInBlock(Cell seekCell, boolean seekBefore) Moves the seeker position within the current block to: the last key that that is less than or equal to the given key ifseekBeforeis false the last key that is strictly less than the given key ifseekBeforeis true.voidsetCurrentBuffer(ByteBuff buffer) Set on which buffer there will be done seeking.Methods inherited from class org.apache.hadoop.hbase.io.encoding.AbstractDataBlockEncoder.AbstractEncodedSeekerincludesMvcc, includesTags
- 
Field Details- 
tmpPair
- 
currentBuffer
- 
current
- 
previous
- 
rowNumber
- 
rowOffsets
- 
cellComparator
 
- 
- 
Constructor Details- 
RowIndexSeekerV1
 
- 
- 
Method Details- 
setCurrentBufferDescription copied from interface:DataBlockEncoder.EncodedSeekerSet on which buffer there will be done seeking.- Parameters:
- buffer- Used for seeking.
 
- 
getKeyDescription copied from interface:DataBlockEncoder.EncodedSeekerFrom the current position creates a cell using the key part of the current buffer- Returns:
- key at current position
 
- 
getValueShallowCopyDescription copied from interface:DataBlockEncoder.EncodedSeekerDoes a shallow copy of the value at the current position. A shallow copy is possible because the returned buffer refers to the backing array of the original encoded buffer.- Returns:
- value at current position
 
- 
getCellDescription copied from interface:DataBlockEncoder.EncodedSeekerReturns the Cell at the current position. Includes memstore timestamp.
- 
rewindDescription copied from interface:DataBlockEncoder.EncodedSeekerSet position to beginning of given block
- 
nextDescription copied from interface:DataBlockEncoder.EncodedSeekerMove to next position- Returns:
- true on success, false if there is no more positions.
 
- 
binarySearch
- 
getRow
- 
seekToKeyInBlockDescription copied from interface:DataBlockEncoder.EncodedSeekerMoves the seeker position within the current block to:- the last key that that is less than or equal to the given key if seekBeforeis false
- the last key that is strictly less than the given key if seekBeforeis true. The caller is responsible for loading the previous block if the requested key turns out to be the first key of the current block.
 - Parameters:
- seekCell- - Cell to which the seek should happen
- seekBefore- find the key strictly less than the given key in case of an exact match. Does not matter in case of an inexact match.
- Returns:
- 0 on exact match, 1 on inexact match.
 
- the last key that that is less than or equal to the given key if 
- 
moveToPrevious
- 
compareKeyDescription copied from interface:DataBlockEncoder.EncodedSeekerCompare the given key against the current key- Returns:
- -1 is the passed key is smaller than the current key, 0 if equal and 1 if greater
 
- 
decodeFirst
- 
decodeAtPosition
- 
decodeNext
- 
decodeTags
 
-