public class WriterImplV2 extends Object implements WriterInternal, MemoryManager.Callback
| Constructor and Description |
|---|
WriterImplV2(FileSystem fs,
Path path,
OrcFile.WriterOptions opts) |
| Modifier and Type | Method and Description |
|---|---|
void |
addRowBatch(VectorizedRowBatch batch)
Add a row batch to the ORC file.
|
void |
addUserMetadata(String name,
ByteBuffer value)
Add arbitrary meta-data to the ORC file.
|
void |
appendStripe(byte[] stripe,
int offset,
int length,
StripeInformation stripeInfo,
OrcProto.StripeStatistics stripeStatistics)
Fast stripe append to ORC file.
|
void |
appendUserMetadata(List<OrcProto.UserMetadataItem> userMetadata)
When fast stripe append is used for merging ORC stripes, after appending
the last stripe from a file, this interface must be used to merge any
user metadata.
|
boolean |
checkMemory(double newScale)
The writer needs to check its memory usage
|
void |
close()
Flush all of the buffers and close the file.
|
CompressionCodec |
getCompressionCodec() |
long |
getNumberOfRows()
Row count gets updated when flushing the stripes.
|
long |
getRawDataSize()
Raw data size will be compute when writing the file footer.
|
TypeDescription |
getSchema()
Get the schema for this writer
|
ColumnStatistics[] |
getStatistics()
Get the statistics about the columns in the file.
|
void |
increaseCompressionSize(int newSize)
Increase the buffer size for this writer.
|
long |
writeIntermediateFooter()
Write an intermediate footer on the file such that if the file is
truncated to the returned offset, it would be a valid ORC file.
|
public WriterImplV2(FileSystem fs, Path path, OrcFile.WriterOptions opts) throws IOException
IOExceptionpublic boolean checkMemory(double newScale)
throws IOException
MemoryManager.CallbackcheckMemory in interface MemoryManager.CallbacknewScale - the current scale factor for memory allocationsIOExceptionpublic void increaseCompressionSize(int newSize)
WriterInternalincreaseCompressionSize in interface WriterInternalnewSize - the new buffer size.public TypeDescription getSchema()
Writerpublic void addUserMetadata(String name, ByteBuffer value)
WriteraddUserMetadata in interface Writername - a key to label the data with.value - the contents of the metadata.public void addRowBatch(VectorizedRowBatch batch) throws IOException
WriteraddRowBatch in interface Writerbatch - the rows to addIOExceptionpublic void close()
throws IOException
Writerclose in interface Closeableclose in interface AutoCloseableclose in interface WriterIOExceptionpublic long getRawDataSize()
getRawDataSize in interface Writerpublic long getNumberOfRows()
getNumberOfRows in interface Writerpublic long writeIntermediateFooter()
throws IOException
WriterwriteIntermediateFooter in interface WriterIOExceptionpublic void appendStripe(byte[] stripe,
int offset,
int length,
StripeInformation stripeInfo,
OrcProto.StripeStatistics stripeStatistics)
throws IOException
WriterappendStripe in interface Writerstripe - - stripe as byte arrayoffset - - offset within byte arraylength - - length of stripe within byte arraystripeInfo - - stripe informationstripeStatistics - - stripe statistics (Protobuf objects can be
merged directly)IOExceptionpublic void appendUserMetadata(List<OrcProto.UserMetadataItem> userMetadata)
WriterappendUserMetadata in interface WriteruserMetadata - - user metadatapublic ColumnStatistics[] getStatistics() throws IOException
WritergetStatistics in interface WriterIOExceptionpublic CompressionCodec getCompressionCodec()
Copyright © 2013–2018 The Apache Software Foundation. All rights reserved.