Package org.apache.iceberg.actions
Interface RewriteTablePath.Result
-
- Enclosing interface:
- RewriteTablePath
public static interface RewriteTablePath.ResultThe action result that contains a summary of the execution.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringfileListLocation()Result file list location.java.lang.StringlatestVersion()Name of latest metadata file versionjava.lang.StringstagingLocation()Staging location of rewritten files
-
-
-
Method Detail
-
stagingLocation
java.lang.String stagingLocation()
Staging location of rewritten files
-
fileListLocation
java.lang.String fileListLocation()
Result file list location. This file contains a listing of all files added to the table between startVersion and endVersion, comma-separated.
For each file, it will include the source path (either the original path in the table, or in the staging location if rewritten), and the target path (under the new prefix).Example file content:
sourcepath/datafile1.parquet,targetpath/datafile1.parquet sourcepath/datafile2.parquet,targetpath/datafile2.parquet stagingpath/manifest.avro,targetpath/manifest.avro
This allows for copying a functioning version of the table to the target prefix.
-
latestVersion
java.lang.String latestVersion()
Name of latest metadata file version
-
-