Package org.apache.iotdb.tsfile.file
Class MetaMarker
- java.lang.Object
-
- org.apache.iotdb.tsfile.file.MetaMarker
-
public class MetaMarker extends java.lang.ObjectMetaMarker denotes the type of headers and footers. Enum is not used for space saving.
-
-
Field Summary
Fields Modifier and Type Field Description static byteCHUNK_GROUP_HEADERstatic byteCHUNK_HEADERChunk header marker and this chunk has more than one page.static byteONLY_ONE_PAGE_CHUNK_HEADERChunk header marker and this chunk has only one page.static byteONLY_ONE_PAGE_TIME_CHUNK_HEADERTime Chunk header marker and this chunk has only one page.static byteONLY_ONE_PAGE_VALUE_CHUNK_HEADERValue Chunk header marker and this chunk has only one page.static byteOPERATION_INDEX_RANGEstatic byteSEPARATORstatic byteTIME_CHUNK_HEADERTime Chunk header marker and this chunk has more than one page.static byteVALUE_CHUNK_HEADERValue Chunk header marker and this chunk has more than one page.static byteVERSIONDeprecated.variable
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidhandleUnexpectedMarker(byte marker)
-
-
-
Field Detail
-
CHUNK_GROUP_HEADER
public static final byte CHUNK_GROUP_HEADER
- See Also:
- Constant Field Values
-
CHUNK_HEADER
public static final byte CHUNK_HEADER
Chunk header marker and this chunk has more than one page.- See Also:
- Constant Field Values
-
SEPARATOR
public static final byte SEPARATOR
- See Also:
- Constant Field Values
-
VERSION
@Deprecated public static final byte VERSION
Deprecated.variableSince TsFile version 3, the marker VERSION is no longer used in TsFile. It should be removed when TsFile upgrade to version 4.- See Also:
- Constant Field Values
-
OPERATION_INDEX_RANGE
public static final byte OPERATION_INDEX_RANGE
- See Also:
- Constant Field Values
-
ONLY_ONE_PAGE_CHUNK_HEADER
public static final byte ONLY_ONE_PAGE_CHUNK_HEADER
Chunk header marker and this chunk has only one page.- See Also:
- Constant Field Values
-
TIME_CHUNK_HEADER
public static final byte TIME_CHUNK_HEADER
Time Chunk header marker and this chunk has more than one page.- See Also:
- Constant Field Values
-
VALUE_CHUNK_HEADER
public static final byte VALUE_CHUNK_HEADER
Value Chunk header marker and this chunk has more than one page.- See Also:
- Constant Field Values
-
ONLY_ONE_PAGE_TIME_CHUNK_HEADER
public static final byte ONLY_ONE_PAGE_TIME_CHUNK_HEADER
Time Chunk header marker and this chunk has only one page.- See Also:
- Constant Field Values
-
ONLY_ONE_PAGE_VALUE_CHUNK_HEADER
public static final byte ONLY_ONE_PAGE_VALUE_CHUNK_HEADER
Value Chunk header marker and this chunk has only one page.- See Also:
- Constant Field Values
-
-