Package org.apache.iceberg.io
Class ClusteredEqualityDeleteWriter<T>
java.lang.Object
org.apache.iceberg.io.ClusteredEqualityDeleteWriter<T>
- All Implemented Interfaces:
 Closeable,AutoCloseable,PartitioningWriter<T,DeleteWriteResult> 
An equality delete writer capable of writing to multiple specs and partitions that requires the
 incoming delete records to be properly clustered by partition spec and by partition within each
 spec.
- 
Constructor Summary
ConstructorsConstructorDescriptionClusteredEqualityDeleteWriter(FileWriterFactory<T> writerFactory, OutputFileFactory fileFactory, FileIO io, long targetFileSizeInBytes)  - 
Method Summary
Modifier and TypeMethodDescriptionprotected voidaddResult(DeleteWriteResult result) protected DeleteWriteResultvoidclose()protected FileWriter<T,DeleteWriteResult> newWriter(PartitionSpec spec, StructLike partition) final DeleteWriteResultresult()Returns a result that contains information about writtenDataFiles orDeleteFiles.voidwrite(T row, PartitionSpec spec, StructLike partition) Writes a row to the provided spec/partition. 
- 
Constructor Details
- 
ClusteredEqualityDeleteWriter
public ClusteredEqualityDeleteWriter(FileWriterFactory<T> writerFactory, OutputFileFactory fileFactory, FileIO io, long targetFileSizeInBytes)  
 - 
 - 
Method Details
- 
newWriter
 - 
addResult
 - 
aggregatedResult
 - 
write
Description copied from interface:PartitioningWriterWrites a row to the provided spec/partition.- Specified by:
 writein interfacePartitioningWriter<T,R> - Parameters:
 row- a data or delete recordspec- a partition specpartition- a partition or null if the spec is unpartitioned
 - 
close
- Specified by:
 closein interfaceAutoCloseable- Specified by:
 closein interfaceCloseable- Throws:
 IOException
 - 
result
Description copied from interface:PartitioningWriterReturns a result that contains information about writtenDataFiles orDeleteFiles. The result is valid only after the writer is closed.- Specified by:
 resultin interfacePartitioningWriter<T,R> - Returns:
 - the writer result
 
 
 -