Class ByteStreamSplitValuesWriter
- java.lang.Object
-
- org.apache.parquet.column.values.ValuesWriter
-
- org.apache.parquet.column.values.bytestreamsplit.ByteStreamSplitValuesWriter
-
- Direct Known Subclasses:
ByteStreamSplitValuesWriter.DoubleByteStreamSplitValuesWriter,ByteStreamSplitValuesWriter.FloatByteStreamSplitValuesWriter
public abstract class ByteStreamSplitValuesWriter extends ValuesWriter
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classByteStreamSplitValuesWriter.DoubleByteStreamSplitValuesWriterstatic classByteStreamSplitValuesWriter.FloatByteStreamSplitValuesWriter
-
Field Summary
Fields Modifier and Type Field Description protected intelementSizeInBytesprotected intnumStreams
-
Constructor Summary
Constructors Constructor Description ByteStreamSplitValuesWriter(int elementSizeInBytes, int initialCapacity, int pageSize, org.apache.parquet.bytes.ByteBufferAllocator allocator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Called to close the values writer.longgetAllocatedSize()longgetBufferedSize()used to decide if we want to work to the next pageorg.apache.parquet.bytes.BytesInputgetBytes()EncodinggetEncoding()called after getBytes() and before reset()voidreset()called after getBytes() to reset the current buffer and start writing the next pageprotected voidscatterBytes(byte[] bytes)-
Methods inherited from class org.apache.parquet.column.values.ValuesWriter
memUsageString, resetDictionary, toDictPageAndClose, writeBoolean, writeByte, writeBytes, writeDouble, writeFloat, writeInteger, writeLong
-
-
-
-
Method Detail
-
getBufferedSize
public long getBufferedSize()
Description copied from class:ValuesWriterused to decide if we want to work to the next page- Specified by:
getBufferedSizein classValuesWriter- Returns:
- the size of the currently buffered data (in bytes)
-
getBytes
public org.apache.parquet.bytes.BytesInput getBytes()
- Specified by:
getBytesin classValuesWriter- Returns:
- the bytes buffered so far to write to the current page
-
getEncoding
public Encoding getEncoding()
Description copied from class:ValuesWritercalled after getBytes() and before reset()- Specified by:
getEncodingin classValuesWriter- Returns:
- the encoding that was used to encode the bytes
-
reset
public void reset()
Description copied from class:ValuesWritercalled after getBytes() to reset the current buffer and start writing the next page- Specified by:
resetin classValuesWriter
-
close
public void close()
Description copied from class:ValuesWriterCalled to close the values writer. Any output stream is closed and can no longer be used. All resources are released.- Overrides:
closein classValuesWriter
-
scatterBytes
protected void scatterBytes(byte[] bytes)
-
getAllocatedSize
public long getAllocatedSize()
Description copied from class:ValuesWriter- Specified by:
getAllocatedSizein classValuesWriter- Returns:
- the allocated size of the buffer
-
-