Package org.apache.iceberg.spark.actions
Class SparkActions
java.lang.Object
org.apache.iceberg.spark.actions.SparkActions
- All Implemented Interfaces:
- ActionsProvider
An implementation of 
ActionsProvider for Spark.
 This class is the primary API for interacting with actions in Spark that users should use to instantiate particular actions.
- 
Method SummaryModifier and TypeMethodDescriptiondeleteOrphanFiles(Table table) Instantiates an action to delete orphan files.deleteReachableFiles(String metadataLocation) Instantiates an action to delete all the files reachable from given metadata location.expireSnapshots(Table table) Instantiates an action to expire snapshots.static SparkActionsget()static SparkActionsget(org.apache.spark.sql.SparkSession spark) migrateTable(String tableIdent) Instantiates an action to migrate an existing table to Iceberg.rewriteDataFiles(Table table) Instantiates an action to rewrite data files.rewriteManifests(Table table) Instantiates an action to rewrite manifests.rewritePositionDeletes(Table table) Instantiates an action to rewrite position delete filessnapshotTable(String tableIdent) Instantiates an action to snapshot an existing table as a new Iceberg table.
- 
Method Details- 
get
- 
get
- 
snapshotTableDescription copied from interface:ActionsProviderInstantiates an action to snapshot an existing table as a new Iceberg table.- Specified by:
- snapshotTablein interface- ActionsProvider
 
- 
migrateTableDescription copied from interface:ActionsProviderInstantiates an action to migrate an existing table to Iceberg.- Specified by:
- migrateTablein interface- ActionsProvider
 
- 
rewriteDataFilesDescription copied from interface:ActionsProviderInstantiates an action to rewrite data files.- Specified by:
- rewriteDataFilesin interface- ActionsProvider
 
- 
deleteOrphanFilesDescription copied from interface:ActionsProviderInstantiates an action to delete orphan files.- Specified by:
- deleteOrphanFilesin interface- ActionsProvider
 
- 
rewriteManifestsDescription copied from interface:ActionsProviderInstantiates an action to rewrite manifests.- Specified by:
- rewriteManifestsin interface- ActionsProvider
 
- 
expireSnapshotsDescription copied from interface:ActionsProviderInstantiates an action to expire snapshots.- Specified by:
- expireSnapshotsin interface- ActionsProvider
 
- 
deleteReachableFilesDescription copied from interface:ActionsProviderInstantiates an action to delete all the files reachable from given metadata location.- Specified by:
- deleteReachableFilesin interface- ActionsProvider
 
- 
rewritePositionDeletesDescription copied from interface:ActionsProviderInstantiates an action to rewrite position delete files- Specified by:
- rewritePositionDeletesin interface- ActionsProvider
 
 
-