Package org.apache.iceberg.actions
Interface ExpireSnapshots.Result
- Enclosing interface:
- ExpireSnapshots
public static interface ExpireSnapshots.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 position delete files.default long
Returns the number of deleted statistics 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. -
deletedStatisticsFilesCount
default long deletedStatisticsFilesCount()Returns the number of deleted statistics files.
-