Package org.apache.iceberg.actions
Interface RewriteTablePath
-
- All Superinterfaces:
Action<RewriteTablePath,RewriteTablePath.Result>
public interface RewriteTablePath extends Action<RewriteTablePath,RewriteTablePath.Result>
An action that rewrites the table's metadata files to a staging directory, replacing all source prefixes in absolute paths with a specified target prefix. There are two modes:- Complete copy: Rewrites all metadata files to the staging directory.
- Incremental copy: Rewrites a subset of metadata files to the staging directory, consisting of metadata files added since a specified start version and/or until end version. The start/end version is identified by the name of a metadata.json file, and all metadata files added before/after these file are marked for rewrite.
The action returns the following:
- The name of the latest metadata.json rewritten to staging location. After the files are copied, this will be the root of the copied table.
- A list of all files added to the table between startVersion and endVersion, including their original and target paths under the target prefix. This list covers both original and rewritten files, allowing for copying to the target paths to form the copied table.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
RewriteTablePath.Result
The action result that contains a summary of the execution.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RewriteTablePath
endVersion(java.lang.String endVersion)
Last metadata version to rewrite, identified by name of a metadata.json file in the table's metadata log.RewriteTablePath
rewriteLocationPrefix(java.lang.String sourcePrefix, java.lang.String targetPrefix)
Configure a source prefix that will be replaced by the specified target prefix in all pathsRewriteTablePath
stagingLocation(java.lang.String stagingLocation)
Custom staging location.RewriteTablePath
startVersion(java.lang.String startVersion)
First metadata version to rewrite, identified by name of a metadata.json file in the table's metadata log.
-
-
-
Method Detail
-
rewriteLocationPrefix
RewriteTablePath rewriteLocationPrefix(java.lang.String sourcePrefix, java.lang.String targetPrefix)
Configure a source prefix that will be replaced by the specified target prefix in all paths- Parameters:
sourcePrefix
- the source prefix to be replacedtargetPrefix
- the target prefix- Returns:
- this for method chaining
-
startVersion
RewriteTablePath startVersion(java.lang.String startVersion)
First metadata version to rewrite, identified by name of a metadata.json file in the table's metadata log. It is optional, if provided then this action will only rewrite metadata files added after this version.- Parameters:
startVersion
- name of a metadata.json file. For example, "00001-8893aa9e-f92e-4443-80e7-cfa42238a654.metadata.json".- Returns:
- this for method chaining
-
endVersion
RewriteTablePath endVersion(java.lang.String endVersion)
Last metadata version to rewrite, identified by name of a metadata.json file in the table's metadata log. It is optional, if provided then this action will only rewrite metadata files added before this file, including the file itself.- Parameters:
endVersion
- name of a metadata.json file. For example, "00001-8893aa9e-f92e-4443-80e7-cfa42238a654.metadata.json".- Returns:
- this for method chaining
-
stagingLocation
RewriteTablePath stagingLocation(java.lang.String stagingLocation)
Custom staging location. It is optional. By default, staging location is a subdirectory under table's metadata directory.- Parameters:
stagingLocation
- the staging location- Returns:
- this for method chaining
-
-