flashJd commented on PR #9113: URL: https://github.com/apache/hudi/pull/9113#issuecomment-1620990951
I'm confused why `insert overwrite hudi_cow_pt_tbl select 13, 'a13', 1100, '2021-12-09', '12' is a not dynamic partition writing?` the semantics should can be controled by config. we shoule clarify the conception static partition and dymanic partition 1)https://iceberg.apache.org/docs/latest/spark-writes/#insert-overwrite iceberg dynamic and static partiton overwrite semantics 2)https://docs.databricks.com/delta/selective-overwrite.html#language-sql delta lake dynamic partiton overwrite semantics 3)1)https://hudi.apache.org/cn/docs/quick-start-guide/#insert-overwrite -- insert overwrite partitioned table with dynamic partition insert overwrite table hudi_cow_pt_tbl select 10, 'a10', 1100, '2021-12-09', '10'; -- insert overwrite partitioned table with static partition insert overwrite hudi_cow_pt_tbl partition(dt = '2021-12-09', hh='12') select 13, 'a13', 1100; @nsivabalan @yihua @XuQianJin-Stars @KnightChess -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
