XingChenBigData commented on issue #3603:
URL: https://github.com/apache/amoro/issues/3603#issuecomment-2953934101

   You need to add spark.sql.extensions to the configuration file 
/etc/kyuubi/conf/kyuubi-defaults.conf to register custom extension classes. 
Mainly, there should be no spaces.
   
   #vi /etc/kyuubi/conf/kyuubi-defaults.conf 
   spark.sql.defaultCatalog=mixed_catalog
   ##First catalog
   
spark.sql.catalog.mixed_catalog=org.apache.amoro.spark.MixedFormatSparkCatalog
   spark.sql.catalog.mixed_catalog.url=thrift://172.18.0.4:1260/mixed_catalog
   
   ##Second catalog
   
spark.sql.catalog.kyuubi_mixed_iceberg_catalog=org.apache.amoro.spark.MixedFormatSparkCatalog
   
spark.sql.catalog.kyuubi_mixed_iceberg_catalog.url=thrift://172.18.0.4:1260/kyuubi_mixed_iceberg_catalog
   
   #Restart kyuubi
   /opt/kyuubi/bin/kyuubi restart
   
   #Enter the kyuubi command line
   kyuubi-beeline -u "jdbc:hive2://127.0.0.1:10009/"
   
   0: jdbc:hive2://127.0.0.1:10009/> show catalogs;
   +----------------+
   |    catalog     |
   +----------------+
   | mixed_catalog  |
   | tpcds          |
   | tpch           |
   +----------------+
   
   Why is there no separate kyuubi_mixed_iceberg_catalog catalog?


-- 
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