Package org.apache.hadoop.hbase
Class PrivateCellUtil.TagRewriteByteBufferExtendedCell
java.lang.Object
org.apache.hadoop.hbase.ByteBufferExtendedCell
org.apache.hadoop.hbase.PrivateCellUtil.TagRewriteByteBufferExtendedCell
- All Implemented Interfaces:
Cell
,ExtendedCell
,HeapSize
,RawCell
- Direct Known Subclasses:
PrivateCellUtil.ValueAndTagRewriteByteBufferExtendedCell
- Enclosing class:
- PrivateCellUtil
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionprotected ByteBufferExtendedCell
private static final int
protected byte[]
Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
CELL_NOT_BASED_ON_CHUNK
Fields inherited from interface org.apache.hadoop.hbase.RawCell
MAX_TAGS_LENGTH
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionDoes a deep copy of the contents to a new memory area and returns it as a new cell.byte[]
Contiguous bytes composed of legal HDFS filename characters which may start at any index in the containing array.Returns TheByteBuffer
containing the column family bytes.byte
Returns Number of family bytes.int
Returns Array index of first family byteint
Returns Position in theByteBuffer
where column family bytes startbyte[]
Contiguous raw bytes that may start at any index in the containing array.Returns TheByteBuffer
containing the column qualifier bytes.int
Returns Number of qualifier bytes.int
Returns Array index of first qualifier byteint
Returns Position in theByteBuffer
where column qualifier bytes startbyte[]
Contiguous raw bytes that may start at any index in the containing array.Returns TheByteBuffer
containing the row bytes.short
Returns Number of row bytes.int
Returns Array index of first row byteint
Returns Position in theByteBuffer
where row bytes startlong
A region-specific unique monotonically increasing sequence ID given to each Cell.int
getSerializedSize
(boolean withTags) KeyValue formatbyte[]
Contiguous raw bytes representing tags that may start at any index in the containing array.Returns TheByteBuffer
containing the tag bytes.int
HBase internally uses 2 bytes to store tags length in Cell.int
Return the first offset where the tags start in the Cellint
Returns Position in theByteBuffer
where tag bytes startlong
Return a long value representing time at which this cell was "Put" into the row.byte
Returns The byte representation of the KeyValue.TYPE of this cell: one of Put, Delete, etcbyte[]
Contiguous raw bytes that may start at any index in the containing array.Returns TheByteBuffer
containing the value bytes.int
Returns Number of value bytes.int
Returns Array index of first value byteint
Returns Position in theByteBuffer
where value bytes startlong
heapSize()
Return the approximate 'exclusive deep size' of implementing object.void
setSequenceId
(long seqId) Sets with the given seqId.void
setTimestamp
(byte[] ts) Sets with the given timestamp.void
setTimestamp
(long ts) Sets with the given timestamp.int
write
(OutputStream out, boolean withTags) Write this cell to an OutputStream in aKeyValue
format.void
write
(ByteBuffer buf, int offset) Write this Cell into the given buf's offset in aKeyValue
format.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.hadoop.hbase.ExtendedCell
getChunkId, getSerializedSize, getType
-
Field Details
-
cell
-
tags
-
HEAP_SIZE_OVERHEAD
-
-
Constructor Details
-
TagRewriteByteBufferExtendedCell
- Parameters:
cell
- The original ByteBufferExtendedCell which it rewritestags
- the tags bytes. The array suppose to contain the tags bytes alone.
-
-
Method Details
-
getRowArray
Description copied from interface:Cell
Contiguous raw bytes that may start at any index in the containing array. Max length is Short.MAX_VALUE which is 32,767 bytes.- Returns:
- The array containing the row bytes.
-
getRowOffset
Description copied from interface:Cell
Returns Array index of first row byte -
getRowLength
Description copied from interface:Cell
Returns Number of row bytes. Must be < rowArray.length - offset. -
getFamilyArray
Description copied from interface:Cell
Contiguous bytes composed of legal HDFS filename characters which may start at any index in the containing array. Max length is Byte.MAX_VALUE, which is 127 bytes.- Returns:
- the array containing the family bytes.
-
getFamilyOffset
Description copied from interface:Cell
Returns Array index of first family byte -
getFamilyLength
Description copied from interface:Cell
Returns Number of family bytes. Must be < familyArray.length - offset. -
getQualifierArray
Description copied from interface:Cell
Contiguous raw bytes that may start at any index in the containing array.- Returns:
- The array containing the qualifier bytes.
-
getQualifierOffset
Description copied from interface:Cell
Returns Array index of first qualifier byte -
getQualifierLength
Description copied from interface:Cell
Returns Number of qualifier bytes. Must be < qualifierArray.length - offset. -
getTimestamp
Description copied from interface:Cell
Return a long value representing time at which this cell was "Put" into the row. Typically represents the time of insertion, but can be any value from 0 to Long.MAX_VALUE. -
getTypeByte
Description copied from interface:ExtendedCell
Returns The byte representation of the KeyValue.TYPE of this cell: one of Put, Delete, etc -
getSequenceId
Description copied from interface:ExtendedCell
A region-specific unique monotonically increasing sequence ID given to each Cell. It always exists for cells in the memstore but is not retained forever. It will be kept forHConstants.KEEP_SEQID_PERIOD
days, but generally becomes irrelevant after the cell's row is no longer involved in any operations that require strict consistency.- Returns:
- seqId (always > 0 if exists), or 0 if it no longer exists
-
getValueArray
Description copied from interface:Cell
Contiguous raw bytes that may start at any index in the containing array. Max length is Integer.MAX_VALUE which is 2,147,483,647 bytes.- Returns:
- The array containing the value bytes.
-
getValueOffset
Description copied from interface:Cell
Returns Array index of first value byte -
getValueLength
Description copied from interface:Cell
Returns Number of value bytes. Must be < valueArray.length - offset. -
getTagsArray
Description copied from interface:RawCell
Contiguous raw bytes representing tags that may start at any index in the containing array.- Returns:
- the tags byte array
-
getTagsOffset
Description copied from interface:RawCell
Return the first offset where the tags start in the Cell -
getTagsLength
Description copied from interface:RawCell
HBase internally uses 2 bytes to store tags length in Cell. As the tags length is always a non-negative number, to make good use of the sign bit, the max of tags length is defined 2 * Short.MAX_VALUE + 1 = 65535. As a result, the return type is int, because a short is not capable of handling that. Please note that even if the return type is int, the max tags length is far less than Integer.MAX_VALUE.- Returns:
- the total length of the tags in the Cell.
-
setSequenceId
Description copied from interface:ExtendedCell
Sets with the given seqId.- Parameters:
seqId
- sequence ID- Throws:
IOException
-
setTimestamp
Description copied from interface:ExtendedCell
Sets with the given timestamp.- Parameters:
ts
- timestamp- Throws:
IOException
-
setTimestamp
Description copied from interface:ExtendedCell
Sets with the given timestamp.- Parameters:
ts
- buffer containing the timestamp value- Throws:
IOException
-
heapSize
Description copied from interface:HeapSize
Return the approximate 'exclusive deep size' of implementing object. Includes count of payload and hosting object sizings. -
write
Description copied from interface:ExtendedCell
Write this cell to an OutputStream in aKeyValue
format.
KeyValue format
<4 bytes keylength> <4 bytes valuelength> <2 bytes rowlength> <row> <1 byte columnfamilylength> <columnfamily> <columnqualifier> <8 bytes timestamp> <1 byte keytype> <value> <2 bytes tagslength> <tags>
- Parameters:
out
- Stream to which cell has to be writtenwithTags
- Whether to write tags.- Returns:
- how many bytes are written.
- Throws:
IOException
-
getSerializedSize
Description copied from interface:ExtendedCell
KeyValue format<4 bytes keylength> <4 bytes valuelength> <2 bytes rowlength> <row> <1 byte columnfamilylength> <columnfamily> <columnqualifier> <8 bytes timestamp> <1 byte keytype> <value> <2 bytes tagslength> <tags>
- Parameters:
withTags
- Whether to write tags.- Returns:
- Bytes count required to serialize this Cell in a
KeyValue
format.
-
write
Description copied from interface:ExtendedCell
Write this Cell into the given buf's offset in aKeyValue
format.- Parameters:
buf
- The buffer where to write the Cell.offset
- The offset within buffer, to write the Cell.
-
deepClone
Description copied from interface:ExtendedCell
Does a deep copy of the contents to a new memory area and returns it as a new cell.- Returns:
- The deep cloned cell
-
getRowByteBuffer
Description copied from class:ByteBufferExtendedCell
Returns TheByteBuffer
containing the row bytes.- Specified by:
getRowByteBuffer
in classByteBufferExtendedCell
-
getRowPosition
Description copied from class:ByteBufferExtendedCell
Returns Position in theByteBuffer
where row bytes start- Specified by:
getRowPosition
in classByteBufferExtendedCell
-
getFamilyByteBuffer
Description copied from class:ByteBufferExtendedCell
Returns TheByteBuffer
containing the column family bytes.- Specified by:
getFamilyByteBuffer
in classByteBufferExtendedCell
-
getFamilyPosition
Description copied from class:ByteBufferExtendedCell
Returns Position in theByteBuffer
where column family bytes start- Specified by:
getFamilyPosition
in classByteBufferExtendedCell
-
getQualifierByteBuffer
Description copied from class:ByteBufferExtendedCell
Returns TheByteBuffer
containing the column qualifier bytes.- Specified by:
getQualifierByteBuffer
in classByteBufferExtendedCell
-
getQualifierPosition
Description copied from class:ByteBufferExtendedCell
Returns Position in theByteBuffer
where column qualifier bytes start- Specified by:
getQualifierPosition
in classByteBufferExtendedCell
-
getValueByteBuffer
Description copied from class:ByteBufferExtendedCell
Returns TheByteBuffer
containing the value bytes.- Specified by:
getValueByteBuffer
in classByteBufferExtendedCell
-
getValuePosition
Description copied from class:ByteBufferExtendedCell
Returns Position in theByteBuffer
where value bytes start- Specified by:
getValuePosition
in classByteBufferExtendedCell
-
getTagsByteBuffer
Description copied from class:ByteBufferExtendedCell
Returns TheByteBuffer
containing the tag bytes.- Specified by:
getTagsByteBuffer
in classByteBufferExtendedCell
-
getTagsPosition
Description copied from class:ByteBufferExtendedCell
Returns Position in theByteBuffer
where tag bytes start- Specified by:
getTagsPosition
in classByteBufferExtendedCell
-