-
Hi, I have a deltaTable partitioning monthly. How Can I overwrite a specific partition? For instance, recreate all data for January without removing all other month? |
Beta Was this translation helpful? Give feedback.
Answered by
JHibbard
Mar 29, 2023
Replies: 1 comment
-
Hi dridk, This is possible in v0.8.0 of delta-rs and newer, see this commit for discussion and docs for details. Example code:
You'll have to write your partition filter so that it only affects the partition you want to overwrite. Hope that helps! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dridk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi dridk,
This is possible in v0.8.0 of delta-rs and newer, see this commit for discussion and docs for details. Example code:
You'll have to write your partition filter so that it only affects the partition you want to overwrite.
Hope that helps!
Jim