AI / Apache Paimon Interview questions
What is the default merge engine in Paimon?
The Deduplicate merge engine is Paimon's default. When the sink receives two or more records with the same primary key, Paimon keeps only the latest one and discards the others, so the primary key stays unique.
If the latest record for a key happens to be a DELETE, every prior record with that key is removed too — unless the table sets ignore-delete, which tells Deduplicate to skip delete records instead of applying them. This is the natural fit for a typical database-style upsert stream, such as CDC changes from a single source table.
More Related questions...