Package org.apache.iceberg.puffin
Class BlobMetadata
- java.lang.Object
-
- org.apache.iceberg.puffin.BlobMetadata
-
public class BlobMetadata extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description BlobMetadata(java.lang.String type, java.util.List<java.lang.Integer> inputFields, long snapshotId, long sequenceNumber, long offset, long length, java.lang.String compressionCodec, java.util.Map<java.lang.String,java.lang.String> properties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
compressionCodec()
java.util.List<java.lang.Integer>
inputFields()
long
length()
Length in the filelong
offset()
Offset in the filejava.util.Map<java.lang.String,java.lang.String>
properties()
long
sequenceNumber()
Sequence number of the Iceberg table's snapshot the blob was computed fromlong
snapshotId()
ID of the Iceberg table's snapshot the blob was computed fromjava.lang.String
type()
-
-
-
Method Detail
-
type
public java.lang.String type()
-
inputFields
public java.util.List<java.lang.Integer> inputFields()
-
snapshotId
public long snapshotId()
ID of the Iceberg table's snapshot the blob was computed from
-
sequenceNumber
public long sequenceNumber()
Sequence number of the Iceberg table's snapshot the blob was computed from
-
offset
public long offset()
Offset in the file
-
length
public long length()
Length in the file
-
compressionCodec
@Nullable public java.lang.String compressionCodec()
-
properties
public java.util.Map<java.lang.String,java.lang.String> properties()
-
-