Package org.apache.iceberg.actions
Class RewriteDataFilesCommitManager.CommitService
- java.lang.Object
-
- org.apache.iceberg.actions.RewriteDataFilesCommitManager.CommitService
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
- Enclosing class:
- RewriteDataFilesCommitManager
public class RewriteDataFilesCommitManager.CommitService extends java.lang.Object implements java.io.Closeable
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
offer(RewriteFileGroup group)
Places a file group in the queue and commits a batch of file groups ifrewritesPerCommit
number of file groups are present in the queue.java.util.List<RewriteFileGroup>
results()
Returns all File groups which have been committedvoid
start()
Starts a single threaded executor service for handling file group commits.
-
-
-
Method Detail
-
start
public void start()
Starts a single threaded executor service for handling file group commits.
-
offer
public void offer(RewriteFileGroup group)
Places a file group in the queue and commits a batch of file groups ifrewritesPerCommit
number of file groups are present in the queue.- Parameters:
group
- file group to eventually be committed
-
results
public java.util.List<RewriteFileGroup> results()
Returns all File groups which have been committed
-
close
public void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
-
-