You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 24 Next »

General 

When is Hudi a useful for me or my organization? 

What are some non-goals for Hudi? 

What is incremental processing? Why does Hudi docs/talks keep talking about it? 

What is the difference between COW (copy on write) vs MOR (merge on read) storage types ?

Copy On Write - This table type enables clients to ingest data on columnar file formats, currently parquet. Any new data that is written to the Hudi dataset using COW table type, will write new parquet files. Updating an existing set of rows will result in a rewrite of the entire parquet files that collectively contain the affected rows being updated. Hence, all writes to such datasets are limited by parquet writing performance, the larger the parquet file, the higher is the time taken to ingest the data.

Merge On Read - This table type enables clients to  ingest data quickly onto row based data format such as avro. Any new data that is written to the Hudi dataset using MOR table type, will write new log/delta files that internally store the data as avro encoded bytes. A compaction process (configured as inline or asynchronous) will convert log file format to columnar file format (parquet). Two different InputFormats expose 2 different views of this data, HoodieInputFormat exposes columnar parquet reading performance while HoodieRealTimeInputFormat exposes columnar and/or log reading performance respectively. Updating an existing set of rows will result in either a) a companion log/delta file for an existing base parquet file generated from a previous compaction or b) an update written to a log/delta file in case no compaction ever happened for it. Hence, all writes to such datasets are limited by avro/log file writing performance, much faster than parquet. Although, there is a higher cost to pay to read log/delta files vs columnar (parquet) files.

More details can be found here.

How do I choose a storage type for my workload ?


Find more details on trade offs between cow & mor storage types here.

Using Hudi

What are some ways to write a Hudi dataset? 

How can I now query the Hudi dataset I just wrote?

How do I control how the input is merged against 

How is a Hudi job deployed? 

What are different ways of running compaction for a MOR dataset?

Performance 

What performance can I expect for Hudi writing?

What performance can I expect for Hudi reading/queries? 

How do I improve the Hudi writing performance?

How do I to avoid creating tons of small files?

HoodieWriteConfig exposes knobs to allow for such flexibility. 

DataSource Spark API users

HoodieDeltaStreamer users

HoodieWriteClient users



  • No labels