Apache Hudi (pronounced “hoodie”) is the next generation streaming data lake platform. Apache Hudi brings core warehouse and database functionality directly to a data lake.
This article assumes that you have mastered the basic knowledge and operation of Hudi. For the knowledge about Hudi not mentioned in this article, you can obtain it from its Official Documentation.
By using Kyuubi, we can run SQL queries towards Hudi which is more convenient, easy to understand, and easy to expand than directly using Spark to manipulate Hudi.
Hudi Integration
To enable the integration of kyuubi spark sql engine and Hudi through Catalog APIs, you need to:
- Referencing the Hudi dependencies
- Setting the Spark extension and catalog configurations
Dependencies
The classpath of kyuubi spark sql engine with Hudi supported consists of
- kyuubi-spark-sql-engine-1.9.1_2.12.jar, the engine jar deployed with Kyuubi distributions
- a copy of spark distribution
- hudi-spark
-bundle_ - .jar (example: hudi-spark3.2-bundle_2.12-0.11.1.jar), which can be found in the Maven Central
In order to make the Hudi packages visible for the runtime classpath of engines, we can use one of these methods:
- Put the Hudi packages into
$SPARK_HOME/jarsdirectly - Set
spark.jars=/path/to/hudi-spark-bundle
Configurations
To activate functionality of Hudi, we can set the following configurations:
# Spark 3.2spark.serializer=org.apache.spark.serializer.KryoSerializerspark.sql.extensions=org.apache.spark.sql.hudi.HoodieSparkSessionExtensionspark.sql.catalog.spark_catalog=org.apache.spark.sql.hudi.catalog.HoodieCatalog# Spark 3.1spark.serializer=org.apache.spark.serializer.KryoSerializerspark.sql.extensions=org.apache.spark.sql.hudi.HoodieSparkSessionExtension
Hudi Operations
Taking Create Table as a example,
CREATE TABLE hudi_cow_nonpcf_tbl (uuid INT,name STRING,price DOUBLE) USING HUDI;
Taking Query Data as a example,
SELECT * FROM hudi_cow_nonpcf_tbl WHERE id < 20;
Taking Insert Data as a example,
INSERT INTO hudi_cow_nonpcf_tbl SELECT 1, 'a1', 20;
Taking Update Data as a example,
UPDATE hudi_cow_nonpcf_tbl SET name = 'foo', price = price * 2 WHERE id = 1;
Taking Delete Data as a example,
DELETE FROM hudi_cow_nonpcf_tbl WHERE uuid = 1;
