2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
19 package org
.apache
.hadoop
.hbase
;
21 import org
.apache
.hadoop
.hbase
.io
.HeapSize
;
22 import org
.apache
.yetus
.audience
.InterfaceAudience
;
26 * The unit of storage in HBase consisting of the following fields:
38 * Uniqueness is determined by the combination of row, column family, column qualifier,
39 * timestamp, and type.
42 * The natural comparator will perform a bitwise comparison on row, column family, and column
43 * qualifier. Less intuitively, it will then treat the greater timestamp as the lesser value with
44 * the goal of sorting newer cells first.
47 * Cell implements Comparable<Cell> which is only meaningful when
48 * comparing to other keys in the
49 * same table. It uses CellComparator which does not work on the -ROOT- and hbase:meta tables.
52 * In the future, we may consider adding a boolean isOnHeap() method and a getValueBuffer() method
53 * that can be used to pass a value directly from an off-heap ByteBuffer to the network without
54 * copying into an on-heap byte[].
57 * Historic note: the original Cell implementation (KeyValue) requires that all fields be encoded as
58 * consecutive bytes in the same byte[], whereas this interface allows fields to reside in separate
62 @InterfaceAudience.Public
63 public interface Cell
extends HeapSize
{
68 * Contiguous raw bytes that may start at any index in the containing array. Max length is
69 * Short.MAX_VALUE which is 32,767 bytes.
70 * @return The array containing the row bytes.
75 * @return Array index of first row byte
80 * @return Number of row bytes. Must be < rowArray.length - offset.
88 * Contiguous bytes composed of legal HDFS filename characters which may start at any index in the
89 * containing array. Max length is Byte.MAX_VALUE, which is 127 bytes.
90 * @return the array containing the family bytes.
92 byte[] getFamilyArray();
95 * @return Array index of first family byte
97 int getFamilyOffset();
100 * @return Number of family bytes. Must be < familyArray.length - offset.
102 byte getFamilyLength();
108 * Contiguous raw bytes that may start at any index in the containing array.
109 * @return The array containing the qualifier bytes.
111 byte[] getQualifierArray();
114 * @return Array index of first qualifier byte
116 int getQualifierOffset();
119 * @return Number of qualifier bytes. Must be < qualifierArray.length - offset.
121 int getQualifierLength();
127 * @return Long value representing time at which this cell was "Put" into the row. Typically
128 * represents the time of insertion, but can be any value from 0 to Long.MAX_VALUE.
136 * @return The byte representation of the KeyValue.TYPE of this cell: one of Put, Delete, etc
137 * @deprecated As of HBase-2.0. Will be removed in HBase-3.0. Use {@link #getType()}.
146 * A region-specific unique monotonically increasing sequence ID given to each Cell. It always
147 * exists for cells in the memstore but is not retained forever. It will be kept for
148 * {@link HConstants#KEEP_SEQID_PERIOD} days, but generally becomes irrelevant after the cell's
149 * row is no longer involved in any operations that require strict consistency.
150 * @return seqId (always > 0 if exists), or 0 if it no longer exists
151 * @deprecated As of HBase-2.0. Will be removed in HBase-3.0.
154 long getSequenceId();
159 * Contiguous raw bytes that may start at any index in the containing array. Max length is
160 * Integer.MAX_VALUE which is 2,147,483,647 bytes.
161 * @return The array containing the value bytes.
163 byte[] getValueArray();
166 * @return Array index of first value byte
168 int getValueOffset();
171 * @return Number of value bytes. Must be < valueArray.length - offset.
173 int getValueLength();
176 * @return Serialized size (defaults to include tag length if has some tags).
178 int getSerializedSize();
181 * Contiguous raw bytes representing tags that may start at any index in the containing array.
182 * @return the tags byte array
183 * @deprecated As of HBase-2.0. Will be removed in HBase-3.0. Tags are are now internal.
186 byte[] getTagsArray();
189 * @return the first offset where the tags start in the Cell
190 * @deprecated As of HBase-2.0. Will be removed in HBase-3.0. Tags are are now internal.
196 * HBase internally uses 2 bytes to store tags length in Cell.
197 * As the tags length is always a non-negative number, to make good use of the sign bit,
198 * the max of tags length is defined 2 * Short.MAX_VALUE + 1 = 65535.
199 * As a result, the return type is int, because a short is not capable of handling that.
200 * Please note that even if the return type is int, the max tags length is far
201 * less than Integer.MAX_VALUE.
203 * @return the total length of the tags in the Cell.
204 * @deprecated As of HBase-2.0. Will be removed in HBase-3.0. Tags are are now internal.
210 * Returns the type of cell in a human readable format using {@link Type}.
211 * Note : This does not expose the internal types of Cells like {@link KeyValue.Type#Maximum} and
212 * {@link KeyValue.Type#Minimum}
213 * @return The data type this cell: one of Put, Delete, etc
215 default Type
getType() {
216 byte byteType
= getTypeByte();
217 Type t
= Type
.CODE_ARRAY
[byteType
& 0xff];
221 throw new UnsupportedOperationException("Invalid type of cell " + byteType
);
225 * The valid types for user to build the cell. Currently, This is subset of {@link KeyValue.Type}.
232 DeleteFamilyVersion((byte) 10),
234 DeleteColumn((byte) 12),
236 DeleteFamily((byte) 14);
238 private final byte code
;
244 public byte getCode() {
248 private static final Type
[] CODE_ARRAY
= new Type
[256];
251 for (Type t
: Type
.values()) {
252 CODE_ARRAY
[t
.code
& 0xff] = t
;