Package org.apache.iceberg.actions
Interface RewritePositionDeleteFiles.FileGroupRewriteResult
-
- Enclosing interface:
- RewritePositionDeleteFiles
public static interface RewritePositionDeleteFiles.FileGroupRewriteResult
For a particular position delete file group, the number of position delete files which are newly created and the number of files which were formerly part of the table but have been rewritten.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
addedBytesCount()
Returns the number of bytes of newly added position delete files in this group.int
addedDeleteFilesCount()
Returns the count of the added position delete files in this group.RewritePositionDeleteFiles.FileGroupInfo
info()
Description of this position delete file group.long
rewrittenBytesCount()
Returns the number of bytes of rewritten position delete files in this group.int
rewrittenDeleteFilesCount()
Returns the count of the position delete files that been rewritten in this group.
-
-
-
Method Detail
-
info
RewritePositionDeleteFiles.FileGroupInfo info()
Description of this position delete file group.
-
rewrittenDeleteFilesCount
int rewrittenDeleteFilesCount()
Returns the count of the position delete files that been rewritten in this group.
-
addedDeleteFilesCount
int addedDeleteFilesCount()
Returns the count of the added position delete files in this group.
-
rewrittenBytesCount
long rewrittenBytesCount()
Returns the number of bytes of rewritten position delete files in this group.
-
addedBytesCount
long addedBytesCount()
Returns the number of bytes of newly added position delete files in this group.
-
-