-
Notifications
You must be signed in to change notification settings - Fork 988
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add data file root location in DataFileMeta #4751
base: master
Are you sure you want to change the base?
Conversation
Please add the Purpose of this PR. |
@@ -131,6 +131,20 @@ public class CoreOptions implements Serializable { | |||
.noDefaultValue() | |||
.withDescription("The file path of this table in the filesystem."); | |||
|
|||
@ExcludeFromDocumentation("Internal use only") | |||
public static final ConfigOption<String> WAREHOUSE_ROOT_PATH = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you not introduce any option in this pr? Just modify data file meta.
* warehouse path, when {@link CoreOptions#DATA_FILE_PATH_DIRECTORY} is set, new writen files | ||
* will be persisted in {@link CoreOptions#DATA_FILE_PATH_DIRECTORY}. | ||
*/ | ||
private final @Nullable String dataRootLocation; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to introduce a new version for CommitMessage and DataSplit.
You can refer to #4322
* warehouse path, when {@link CoreOptions#DATA_FILE_PATH_DIRECTORY} is set, new writen files | ||
* will be persisted in {@link CoreOptions#DATA_FILE_PATH_DIRECTORY}. | ||
*/ | ||
private final @Nullable String dataRootLocation; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename to externalPath?
Purpose
Linked issue: close #xxx
Tests
API and Format
Documentation