stevenzwu edited a comment on issue #3905: URL: https://github.com/apache/iceberg/issues/3905#issuecomment-1030876120
When incremental read was initially implemented in FlinkSource. There is no row-level deletes (V2 spec) in Iceberg. Agree that it should support deletes if that is not the case. For overwrite, I see two scenarios 1. rewrite without new data (like compaction). Here incremental read should ignore overwrite snapshots. This is probably the more concern case. 2. overwrite due to backfill. In this case, technically we should include (delete all rows before overwrite and insert all rows after overwrite). But that could be quite inefficient, maybe the downstream job (incremental read from Iceberg) should also do a backfill? -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
