Package org.apache.iceberg.actions
Interface DeleteReachableFiles.Result
- Enclosing interface:
- DeleteReachableFiles
public static interface DeleteReachableFiles.Result
The action result that contains a summary of the execution.
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the number of deleted data files.long
Returns the number of deleted equality delete files.long
Returns the number of deleted manifest lists.long
Returns the number of deleted manifests.long
Returns the number of deleted metadata json, version hint files.long
Returns the number of deleted position delete files.
-
Method Details
-
deletedDataFilesCount
long deletedDataFilesCount()Returns the number of deleted data files. -
deletedEqualityDeleteFilesCount
long deletedEqualityDeleteFilesCount()Returns the number of deleted equality delete files. -
deletedPositionDeleteFilesCount
long deletedPositionDeleteFilesCount()Returns the number of deleted position delete files. -
deletedManifestsCount
long deletedManifestsCount()Returns the number of deleted manifests. -
deletedManifestListsCount
long deletedManifestListsCount()Returns the number of deleted manifest lists. -
deletedOtherFilesCount
long deletedOtherFilesCount()Returns the number of deleted metadata json, version hint files.
-