v.22.11New Feature

Add hudi and deltaLake table functions

Add table function hudi and deltaLake. #43080 (flynn).
Introduces new table functions hudi and deltaLake to ClickHouse, enabling direct querying of Apache Hudi and Delta Lake data formats.

Why it matters

The addition of these table functions allows users to seamlessly read and analyze data stored in Apache Hudi and Delta Lake formats without requiring data conversion or external processing, enhancing interoperability and simplifying data workflows.

How to use it

Users can utilize the new table functions by invoking hudi() or deltaLake() in their SQL queries as table sources. For example:

SELECT  FROM hudi('path/to/hudi/table')


and

SELECT  FROM deltaLake('path/to/deltaLake/table')