melin opened a new issue, #5537:
URL: https://github.com/apache/hudi/issues/5537

   ```scala
   val spark = SparkSession.builder().master("local").enableHiveSupport()
         .config("spark.sql.extensions",
           "org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions," 
+
             "org.apache.spark.sql.hudi.HoodieSparkSessionExtension")
         .config("spark.sql.catalog.spark_catalog", 
"org.apache.iceberg.spark.SparkSessionCatalog")
         .config("spark.sql.catalog.spark_catalog.type", "hive")
   
         .config("spark.sql.catalog.hudi", 
"org.apache.spark.sql.hudi.catalog.HoodieCatalog")
   
         .getOrCreate()
   ```
   
   iceberg catalog name use spark_catalog,hudi catalog name cannot use 
spark_catalog。
   
   Hudi For Spark 3.2, the additional spark_catalog config is required: --conf 
'spark.sql.catalog.spark_catalog=org.apache.spark.sql.hudi.catalog.HoodieCatalog'
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to