Package org.apache.iceberg.io
Class RollingDataWriter<T>
java.lang.Object
org.apache.iceberg.io.RollingDataWriter<T>
- All Implemented Interfaces:
- Closeable,- AutoCloseable,- FileWriter<T,- DataWriteResult> 
A rolling data writer that splits incoming data into multiple files within one spec/partition
 based on the target file size.
- 
Constructor SummaryConstructorsConstructorDescriptionRollingDataWriter(FileWriterFactory<T> writerFactory, OutputFileFactory fileFactory, FileIO io, long targetFileSizeInBytes, PartitionSpec spec, StructLike partition) 
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidaddResult(DataWriteResult result) protected DataWriteResultvoidclose()longlonglength()Returns the number of bytes that were currently written by this writer.protected DataWriter<T> newWriter(EncryptedOutputFile file) protected voidprotected StructLikefinal DataWriteResultresult()Returns a result that contains information about writtenDataFiles orDeleteFiles.protected PartitionSpecspec()voidWrites a row to a predefined spec/partition.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.iceberg.io.FileWriterwrite
- 
Constructor Details- 
RollingDataWriterpublic RollingDataWriter(FileWriterFactory<T> writerFactory, OutputFileFactory fileFactory, FileIO io, long targetFileSizeInBytes, PartitionSpec spec, StructLike partition) 
 
- 
- 
Method Details- 
newWriter
- 
addResult
- 
aggregatedResult
- 
spec
- 
partition
- 
currentFilePath
- 
currentFileRowspublic long currentFileRows()
- 
lengthpublic long length()Description copied from interface:FileWriterReturns the number of bytes that were currently written by this writer.- Specified by:
- lengthin interface- FileWriter<T,- W extends FileWriter<T, - R>> 
- Returns:
- the number of written bytes
 
- 
writeDescription copied from interface:FileWriterWrites a row to a predefined spec/partition.- Specified by:
- writein interface- FileWriter<T,- W extends FileWriter<T, - R>> 
- Parameters:
- row- a data or delete record
 
- 
openCurrentWriterprotected void openCurrentWriter()
- 
close- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Throws:
- IOException
 
- 
resultDescription copied from interface:FileWriterReturns a result that contains information about writtenDataFiles orDeleteFiles. The result is valid only after the writer is closed.- Specified by:
- resultin interface- FileWriter<T,- W extends FileWriter<T, - R>> 
- Returns:
- the file writer result
 
 
-