Interface DeleteFiles
- All Superinterfaces:
- PendingUpdate<Snapshot>,- SnapshotUpdate<DeleteFiles>
- All Known Implementing Classes:
- StreamingDelete
This API accumulates file deletions, produces a new Snapshot of the table, and commits
 that snapshot as the current.
 
When committing, these changes will be applied to the latest table snapshot. Commit conflicts will be resolved by applying the changes to the new latest snapshot and reattempting the commit.
- 
Method SummaryModifier and TypeMethodDescriptioncaseSensitive(boolean caseSensitive) Enables or disables case sensitive expression binding for methods that accept expressions.deleteFile(CharSequence path) Delete a file path from the underlying table.default DeleteFilesdeleteFile(DataFile file) Delete a file tracked by aDataFilefrom the underlying table.Delete files that match anExpressionon data rows from the table.default DeleteFilesEnables validation that any files that are part of the deletion still exist when committing the operation.Methods inherited from interface org.apache.iceberg.PendingUpdateapply, commit, updateEventMethods inherited from interface org.apache.iceberg.SnapshotUpdatedeleteWith, scanManifestsWith, set, stageOnly, toBranch
- 
Method Details- 
deleteFileDelete a file path from the underlying table.To remove a file from the table, this path must equal a path in the table's metadata. Paths that are different but equivalent will not be removed. For example, file:/path/file.avro is equivalent to file:///path/file.avro, but would not remove the latter path from the table. - Parameters:
- path- a fully-qualified file path to remove from the table
- Returns:
- this for method chaining
 
- 
deleteFileDelete a file tracked by aDataFilefrom the underlying table.- Parameters:
- file- a DataFile to remove from the table
- Returns:
- this for method chaining
 
- 
deleteFromRowFilterDelete files that match anExpressionon data rows from the table.A file is selected to be deleted by the expression if it could contain any rows that match the expression (candidate files are selected using an inclusive projection). These candidate files are deleted if all of the rows in the file must match the expression (the partition data matches the expression'sProjections.strict(PartitionSpec)strict projection}). This guarantees that files are deleted if and only if all rows in the file must match the expression.Files that may contain some rows that match the expression and some rows that do not will result in a ValidationException.- Parameters:
- expr- an expression on rows in the table
- Returns:
- this for method chaining
- Throws:
- ValidationException- If a file can contain both rows that match and rows that do not
 
- 
caseSensitiveEnables or disables case sensitive expression binding for methods that accept expressions.- Parameters:
- caseSensitive- whether expression binding should be case sensitive
- Returns:
- this for method chaining
 
- 
validateFilesExistEnables validation that any files that are part of the deletion still exist when committing the operation.- Returns:
- this for method chaining
 
 
-