-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
[Spark] Add managed-commit table feature and CommitStore interface #2627
[Spark] Add managed-commit table feature and CommitStore interface #2627
Conversation
836b253
to
294e7ce
Compare
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.
LGTM. The RFC needs to merge before we merge code tho.
spark/src/main/scala/org/apache/spark/sql/delta/managedcommit/CommitStore.scala
Outdated
Show resolved
Hide resolved
spark/src/main/scala/org/apache/spark/sql/delta/util/FileNames.scala
Outdated
Show resolved
Hide resolved
spark/src/main/scala/org/apache/spark/sql/delta/util/FileNames.scala
Outdated
Show resolved
Hide resolved
val dir = new File(rootDir, "_delta_log") | ||
dir.mkdir() |
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.
Yikes... this test was creating Delta metadata files directly in the table dir?
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.
Looks good, pending two last items to address.
Which Delta project/connector is this regarding?
Description
Add Managed Commit table feature and Commit Store interface.
Related issue: #2598
How was this patch tested?
UTs
Does this PR introduce any user-facing changes?
No