BigData / Apache Hudi Interview Questions
What are the two table types supported by Hudi?
Hudi supports exactly two table types, chosen when a table is created and fixed for the lifetime of that table: Copy-on-Write (CoW) and Merge-on-Read (MoR).
Both support the same upsert/delete API and the same indexing and table services; what differs is when the cost of merging an update into columnar data is paid — at write time for CoW, or deferred to read/compaction time for MoR. Choosing between them is one of the most common Hudi design decisions and trades off write latency against read latency.
More Related questions...