fix: Avoid changing table configs when creating a table with an existing base path on Spark#14175
Merged
yihua merged 4 commits intoOct 30, 2025
Conversation
nsivabalan
approved these changes
Oct 29, 2025
adecff2 to
3bb2a60
Compare
Collaborator
yihua
added a commit
to yihua/hudi
that referenced
this pull request
Nov 10, 2025
…ing base path on Spark (apache#14175)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Describe the issue this Pull Request addresses
When creating an external table using the following CREATE TABLE SQL statement on Spark, the table config file
.hoodie/hoodie.propertiesis updated with additional table configs,hoodie.table.create.schemaandhoodie.database.name. However, these two table configs are not needed for an external table, especially for reading the table only. Updating the table config requires write access which is not needed for read-only case, causing confusion to users.Summary and Changelog
This PR fixes the issue above, to keep the table config the same during executing CREATE TABLE SQL statement if the table's base path exists, where the change to table configs is unnecessary.
A new test is added to validate the change.
Impact
Improves CREATE TABLE SQL experience.
Risk Level
low
Documentation Update
N/A
Contributor's checklist